mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-25 06:27:59 +01:00
Files can now upload. This requires you to reprovision your VM.
This commit is contained in:
parent
893d8e20bb
commit
65b979a8c6
4 changed files with 1962 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
sudo cp /vagrant/vagrant/pony.fm.nginx.config /etc/nginx/nginx.conf
|
sudo cp /vagrant/vagrant/pony.fm.nginx.config /etc/nginx/nginx.conf
|
||||||
sudo cp /vagrant/vagrant/pony.fm.nginx.site.config /etc/nginx/sites-enabled/pony.fm
|
sudo cp /vagrant/vagrant/pony.fm.nginx.site.config /etc/nginx/sites-enabled/pony.fm
|
||||||
|
|
||||||
|
sudo cp /vagrant/vagrant/php.ini /etc/php5/fpm/php.ini
|
||||||
|
|
||||||
sudo cp /vagrant/vagrant/pony.fm.mysql.config /etc/mysql/my.cnf
|
sudo cp /vagrant/vagrant/pony.fm.mysql.config /etc/mysql/my.cnf
|
||||||
|
|
||||||
sudo cp /vagrant/vagrant/pony.fm.redis.config /etc/redis/redis.conf
|
sudo cp /vagrant/vagrant/pony.fm.redis.config /etc/redis/redis.conf
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
sudo add-apt-repository -y ppa:kirillshkrogalev/ffmpeg-next
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y ffmpeg
|
||||||
|
sudo apt-get install -y AtomicParsley
|
||||||
|
sudo add-apt-repository -y --remove ppa:kirillshkrogalev/ffmpeg-next
|
||||||
|
|
||||||
mkdir /vagrant/logs
|
mkdir /vagrant/logs
|
||||||
/vagrant/vagrant/copy-and-restart-configs.sh
|
/vagrant/vagrant/copy-and-restart-configs.sh
|
||||||
|
|
||||||
|
|
1953
vagrant/php.ini
Normal file
1953
vagrant/php.ini
Normal file
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,7 @@
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
|
||||||
|
client_max_body_size 200M;
|
||||||
gzip on;
|
gzip on;
|
||||||
gzip_comp_level 4;
|
gzip_comp_level 4;
|
||||||
gzip_min_length 1280;
|
gzip_min_length 1280;
|
||||||
|
|
Loading…
Reference in a new issue