Created
June 3, 2018 14:51
-
-
Save anneau/0f92b384ede952f47e04bef76572a69a to your computer and use it in GitHub Desktop.
Symfony1.4をnginxを通して配信する人がいるのかはわからないけど、その人のためのgist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 80; | |
listen [::]:80; | |
server_name symfony.local; | |
root /var/www/symfony-sample/web; | |
index index.php index.html index.htm; | |
location / { | |
try_files $uri @rewriteapp; | |
} | |
# For Symfony 1 | |
location @rewriteapp { | |
rewrite ^(.*)$ /index.php/$1 last; | |
} | |
location /sf/ { | |
root /var/www/symfony-sample/lib/vendor/symfony/data/web; | |
} | |
# For Symfony 3 | |
# location @rewriteapp { | |
# rewrite ^(.*)$ /app.php/$1 last; | |
# } | |
# For Symfony 4 config | |
# location @rewriteapp { | |
# rewrite ^(.*)$ /index.php/$1 last; | |
# } | |
location ~ ^/(app|app_dev|config|index)\.php(/|$) { | |
fastcgi_pass php-upstream; | |
fastcgi_split_path_info ^(.+\.php)(/.*)$; | |
include fastcgi_params; | |
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; | |
#fixes timeouts | |
fastcgi_read_timeout 600; | |
fastcgi_param HTTPS off; | |
} | |
error_log /var/log/nginx/symfony_error.log; | |
access_log /var/log/nginx/symfony_access.log; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment