2023-06-27 20:21:55 +00:00
|
|
|
# Do not edit this file. It is automatically generated by https://www.oliverdavies.uk/build-configs.
|
2023-03-14 20:20:48 +00:00
|
|
|
|
2023-01-21 15:50:45 +00:00
|
|
|
server {
|
|
|
|
server_name _;
|
|
|
|
|
2023-02-19 08:15:06 +00:00
|
|
|
root /app/web;
|
2023-01-21 15:50:45 +00:00
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri /index.php?$query_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(|/.*)$;
|
|
|
|
try_files $fastcgi_script_name =404;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
fastcgi_param QUERY_STRING $query_string;
|
|
|
|
fastcgi_intercept_errors on;
|
|
|
|
fastcgi_pass php:9000;
|
|
|
|
}
|
|
|
|
}
|