Adding minor webapps to WebServer tracking

This commit is contained in:
2024-01-12 13:06:58 -06:00
parent 221ce69a80
commit cd3210c5fb
7 changed files with 82 additions and 3 deletions

View File

@@ -18,10 +18,14 @@ server {
proxy_pass http://127.0.0.1:3000;
}
location /shadowarch {
rewrite /shadowarch /Foundation/ShadowArch/raw/branch/main/EtcFiles/shadowarch;
}
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;
rewrite /aninix.xml /Foundation/Wiki/raw/branch/main/rss/aninix.xml;
}
location /martialarts/maqotw.xml {
@@ -44,6 +48,12 @@ server {
try_files $uri /blackpage.html;
}
location /notepad {
root /usr/share/webapps/aninix/;
try_files $uri /notepad.html;
}
}
server {