proxitok/setup/nginx_heroku.conf
Pablo Ferreiro d061c210a2
Heroku fix
2022-03-13 18:42:41 +01:00

16 lines
369 B
Plaintext

location / {
# try to serve file directly, fallback to rewrite
try_files $uri @rewriteapp;
}
location @rewriteapp {
# rewrite all to index.php
rewrite ^(.*)$ /index.php/$1 last;
}
location ~ ^/index\.php(/|$) {
try_files @heroku-fcgi @heroku-fcgi;
# ensure that /index.php isn't accessible directly, but only through a rewrite
internal;
}