61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
server_name default_server;
|
|
|
|
include conf/sec.conf;
|
|
include conf/default.csp.conf;
|
|
|
|
include conf/letsencrypt.conf;
|
|
|
|
location / {
|
|
|
|
rewrite ^/martialarts(\/)*(\/index.html)*$ /assets/martialarts/index.html;
|
|
|
|
proxy_set_header Host $http_host;
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
proxy_set_header X-Forwarded-Server $host;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_pass http://127.0.0.1:3000;
|
|
}
|
|
|
|
location /aninix.xml {
|
|
proxy_hide_header Content-Type;
|
|
add_header content-type "application/atom+xml";
|
|
rewrite /aninix.xml /AniNIX/Wiki/raw/branch/main/rss/aninix.xml;
|
|
}
|
|
|
|
location /martialarts/maqotw.xml {
|
|
proxy_hide_header Content-Type;
|
|
add_header content-type "application/atom+xml";
|
|
rewrite /martialarts/maqotw.xml /MartialArts/Wiki/raw/branch/main/rss/maqotw.xml;
|
|
}
|
|
|
|
location /whatismyip {
|
|
include conf.d/fastcgi.config;
|
|
root /usr/share/webapps/aninix/;
|
|
location ~* whatismyip {
|
|
try_files $uri /whatismyip.php;
|
|
expires max;
|
|
}
|
|
}
|
|
|
|
location /blackpage {
|
|
root /usr/share/webapps/aninix/;
|
|
try_files $uri /blackpage.html;
|
|
}
|
|
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl http2;
|
|
server_name foundation.aninix.net;
|
|
include conf/sec.conf;
|
|
include conf/letsencrypt.conf;
|
|
include conf/default.csp.conf;
|
|
|
|
location / {
|
|
rewrite ^/(.*)$ https://aninix.net/$1 permanent;
|
|
}
|
|
|
|
}
|