forum/stp.conf

50 lines
1.1 KiB
Text
Raw Normal View History

2023-10-21 23:55:49 -04:00
server {
listen 80;
server_name squattheplanet.com www.squattheplanet.com;
client_max_body_size 512M;
add_header X-Xss-Protection "1; mode=block" always;
add_header X-Content-Type-Options "nosniff" always;
root /var/www/html;
location / {
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$uri&$args;
}
location /install/data/ {
internal;
}
location /install/templates/ {
internal;
}
location /internal_data/ {
internal;
}
location /library/ {
internal;
}
location /src/ {
internal;
}
rewrite ^/chat(.*)$ https://discordapp.com/invite/R6Hwjmh permanent;
rewrite ^/shop(.*)$ https://www.etsy.com/shop/SquatThePlanet permanent;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
}