37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
|
server {
|
||
|
listen 80 default_server;
|
||
|
listen [::]:80 default_server;
|
||
|
server_name localhost;
|
||
|
|
||
|
client_max_body_size 1024M;
|
||
|
|
||
|
root /var/www/html/public;
|
||
|
|
||
|
location / {
|
||
|
# try to serve file directly, fallback to index.php
|
||
|
try_files $uri /index.php$is_args$args;
|
||
|
}
|
||
|
|
||
|
location ~ ^/index\.php(/|$) {
|
||
|
fastcgi_pass app:9000;
|
||
|
fastcgi_split_path_info ^(.+\.php)(/.*)$;
|
||
|
include fastcgi_params;
|
||
|
|
||
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
||
|
fastcgi_param DOCUMENT_ROOT $realpath_root;
|
||
|
# Prevents URIs that include the front controller. This will 404:
|
||
|
# http://domain.tld/index.php/some-path
|
||
|
# Remove the internal directive to allow URIs like this
|
||
|
internal;
|
||
|
}
|
||
|
|
||
|
# return 404 for all other php files not matching the front controller
|
||
|
# this prevents access to other php files you don't want to be accessible.
|
||
|
location ~ \.php$ {
|
||
|
return 404;
|
||
|
}
|
||
|
|
||
|
error_log /var/log/angie/project_error.log;
|
||
|
access_log /var/log/angie/project_access.log;
|
||
|
}
|