You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
410 B
18 lines
410 B
2 years ago
|
server {
|
||
|
listen 80;
|
||
|
|
||
|
# this path MUST be exactly as docker-compose.fpm.volumes,
|
||
|
# even if it doesn't exist in this dock.
|
||
|
root /var/www/public;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri /index.php$is_args$args;
|
||
|
}
|
||
|
|
||
|
location ~ ^/.+\.php(/|$) {
|
||
|
fastcgi_pass php:9000;
|
||
|
include fastcgi_params;
|
||
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
||
|
}
|
||
|
}
|