79 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			2.0 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;
 | 
						|
      rewrite ^/hire(\/)*(\/index.html)*$ /assets/hire/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 /shadowarch {
 | 
						|
        rewrite /shadowarch /AniNIX/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;
 | 
						|
    }
 | 
						|
 | 
						|
    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 /25u {
 | 
						|
        include conf.d/fastcgi.config;
 | 
						|
        root /usr/share/webapps/aninix/;
 | 
						|
        location ~* 25u {
 | 
						|
            try_files $uri /25u_subnetting.php;
 | 
						|
            expires max;
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    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;
 | 
						|
    }
 | 
						|
 | 
						|
    location /scratch {
 | 
						|
        root /usr/share/webapps/aninix/;
 | 
						|
        try_files $uri /scratch.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;
 | 
						|
    }
 | 
						|
 | 
						|
}
 |