mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-10 06:57:52 +00:00
25 lines
357 B
Plaintext
25 lines
357 B
Plaintext
server {
|
|
listen [::]:80 default;
|
|
|
|
allow 0200::/7;
|
|
deny all;
|
|
|
|
root /var/www/html;
|
|
|
|
index index.html index.htm index.nginx-debian.html index.php;
|
|
|
|
server_name _;
|
|
|
|
location / {
|
|
try_files $uri $uri/ =404;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
include snippets/fastcgi-php.conf;
|
|
fastcgi_pass unix:/run/php/php8.1-fpm.sock;
|
|
}
|
|
|
|
location ~ /\. {
|
|
deny all;
|
|
}
|
|
} |