update sample config

This commit is contained in:
Laura Hausmann 2021-05-28 16:56:49 +02:00
parent 6bddefe8b5
commit 2157871ec3
Signed by: zotan
GPG Key ID: D044E84C5BE01605
1 changed files with 17 additions and 8 deletions

View File

@ -1,8 +1,8 @@
server {
include sites/ip6.biz/inc/ssl.conf;
include sites/ip6.biz/inc/ssl64.conf;
server_name ip6.biz;
root /var/www/sites/ip6.biz;
root /opt/ip6.biz/src;
index index.html;
location / {
@ -10,27 +10,36 @@ server {
return 302 /$1;
}
if ($request_uri ~ ^/.*(\.(php|sh))) {
return 403;
}
try_files $uri $uri.html $uri/ =404;
}
}
server {
include sites/ip6.biz/inc/ssl.conf;
include sites/ip6.biz/inc/ssl64.conf;
server_name www.ip6.biz;
return 301 https://ip6.biz;
return 301 $scheme://ip6.biz$request_uri;
}
server {
include sites/ip6.biz/inc/ssl.conf;
include sites/ip6.biz/inc/ssl64.conf;
server_name v4.ip6.biz v6.ip6.biz any.ip6.biz f4.ip6.biz f6.ip6.biz v4.z4.ip6.biz v6.z4.ip6.biz v4.z6.ip6.biz v6.z6.ip6.biz;
root /var/www/sites/ip6.biz;
root /opt/ip6.biz/src;
include inc/php.conf;
#access_log /var/log/nginx/access.log main;
location = / {
rewrite ^ $scheme://$host/plain.php permanent;
}
location / {
return 403;
}
add_header Access-Control-Allow-Origin "https://ip6.biz";
include inc/php.conf;
}