mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-21 16:38:36 -06:00
Configure nginx [skip ci]
This commit is contained in:
parent
f87b531fe1
commit
fa818e0924
2
Procfile
2
Procfile
@ -1 +1 @@
|
||||
web: vendor/bin/heroku-php-nginx public/ -C nginx_app.conf
|
||||
web: vendor/bin/heroku-php-nginx -C nginx_app.conf public/
|
||||
|
@ -1,7 +1,7 @@
|
||||
location / {
|
||||
try_files $uri $uri/ /index.php?$query_string;
|
||||
autoindex on;
|
||||
sendfile off;
|
||||
}
|
||||
client_max_body_size 300M;
|
||||
index index.php index.html index.htm;
|
||||
try_files $uri @rewriteapp;
|
||||
}
|
||||
|
||||
location @rewriteapp {
|
||||
rewrite ^(.*)$ /index.php$1 last;
|
||||
}
|
Loading…
Reference in New Issue
Block a user