Do not allow disabled folders into Git, 4.
This commit is contained in:
19
Config/ReverseProxy/config/disabled/climate.hyperling.com
Normal file
19
Config/ReverseProxy/config/disabled/climate.hyperling.com
Normal file
@@ -0,0 +1,19 @@
|
||||
# 20210202 C.Greenwood
|
||||
# 20230111 - Change to hit WeatherSpark instead of using local grafana server.
|
||||
# 20230819 - Removes SSL, copied from weather to climate, changed cities to all be in AZ.
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name climate.hyperling.com;
|
||||
location / {
|
||||
return 301 http://weatherspark.com/compare/y/2636~2628~2874~2477~2857~2840/Comparison-of-the-Average-Weather-in-Flagstaff-Payson-Show-Low-Prescott-Tucson-and-Benson;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443;
|
||||
server_name climate.hyperling.com;
|
||||
location / {
|
||||
return 301 http://$host$request_uri;
|
||||
}
|
||||
}
|
8
Config/ReverseProxy/config/disabled/mail
Normal file
8
Config/ReverseProxy/config/disabled/mail
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
server {
|
||||
listen 25;
|
||||
|
||||
if ($host = mail.thesovereign.one) {
|
||||
proxy_pass thesovereign-mail;
|
||||
}
|
||||
}
|
10
Config/ReverseProxy/config/disabled/mail.thesovereign.one
Normal file
10
Config/ReverseProxy/config/disabled/mail.thesovereign.one
Normal file
@@ -0,0 +1,10 @@
|
||||
# 2023-07-11 Hyperling
|
||||
# Seeing if port forwarding allows listen and server_name directives and allows mail reverse proxy without auth server.
|
||||
|
||||
server {
|
||||
listen 25;
|
||||
server_name mail.thesovereign.one;
|
||||
|
||||
proxy_pass thesovereign-smtp;
|
||||
}
|
||||
|
Reference in New Issue
Block a user