Adding minor webapps to WebServer tracking
This commit is contained in:
9
roles/WebServer/files/apps/blackpage.html
Normal file
9
roles/WebServer/files/apps/blackpage.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Hit F11 to black screen</title>
|
||||
<link rel="stylesheet" type="text/css" href="../style.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
</body>
|
||||
</html>
|
5
roles/WebServer/files/apps/notepad.html
Normal file
5
roles/WebServer/files/apps/notepad.html
Normal file
@@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<body>
|
||||
<form><textarea cols=80 rows=35></textarea></form>
|
||||
</body>
|
||||
</html>
|
3
roles/WebServer/files/apps/whatismyip.php
Normal file
3
roles/WebServer/files/apps/whatismyip.php
Normal file
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
echo $_SERVER['REMOTE_ADDR'];
|
||||
?>
|
@@ -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 {
|
||||
|
Reference in New Issue
Block a user