2022-11-20 22:38:22 +01:00
|
|
|
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
|
|
|
|
location __PATH__/ {
|
2022-03-25 18:30:41 +01:00
|
|
|
|
|
|
|
# Path to source
|
2023-02-17 22:50:54 +01:00
|
|
|
root __INSTALL_DIR__/public/;
|
2022-03-25 18:30:41 +01:00
|
|
|
|
2023-01-07 13:51:09 +01:00
|
|
|
client_max_body_size 50m;
|
|
|
|
|
2022-03-25 18:30:41 +01:00
|
|
|
index index.php;
|
|
|
|
|
2022-05-10 08:08:12 +02:00
|
|
|
location = /favicon.ico { access_log off; log_not_found off; }
|
|
|
|
location = /robots.txt { access_log off; log_not_found off; }
|
2022-04-07 16:15:15 +02:00
|
|
|
|
|
|
|
location ~ /\.(?!well-known).* {
|
|
|
|
deny all;
|
|
|
|
}
|
2022-03-25 18:30:41 +01:00
|
|
|
|
2022-04-07 16:15:15 +02:00
|
|
|
error_page 404 /index.php;
|
2022-03-25 23:20:37 +01:00
|
|
|
|
2022-06-01 18:15:28 +02:00
|
|
|
try_files $uri $uri/ /index.php?$query_string;
|
2022-03-25 18:30:41 +01:00
|
|
|
|
|
|
|
location ~ [^/]\.php(/|$) {
|
|
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
|
|
|
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
|
|
|
|
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param REMOTE_USER $remote_user;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
2022-04-07 16:15:15 +02:00
|
|
|
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
|
2022-03-25 18:30:41 +01:00
|
|
|
}
|
|
|
|
}
|