20 lines
434 B
Plaintext
20 lines
434 B
Plaintext
server {
|
|
index index.php index.html;
|
|
server_name symfony_example_app;
|
|
error_log stderr debug;
|
|
access_log stderr;
|
|
listen 80;
|
|
root /var/www/html/public;
|
|
|
|
location / {
|
|
try_files $uri /index.php$is_args$args;
|
|
}
|
|
|
|
location ~ ^/.+\.php(/|$) {
|
|
fastcgi_pass php-fpm:9000;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
}
|
|
}
|
|
|