2 changed files with 0 additions and 171 deletions
@ -1,38 +0,0 @@
@@ -1,38 +0,0 @@
|
||||
#################### |
||||
# |
||||
# charlesreid1.com |
||||
# http |
||||
# 80 |
||||
# |
||||
# basically, just redirects to https |
||||
# |
||||
#################### |
||||
|
||||
|
||||
server { |
||||
listen 80; |
||||
listen [::]:80; |
||||
server_name www.charlesreid1.com; |
||||
location / { |
||||
return 301 https://www.charlesreid1.com$request_uri; |
||||
} |
||||
} |
||||
|
||||
server { |
||||
listen 80; |
||||
listen [::]:80; |
||||
server_name git.charlesreid1.com; |
||||
location / { |
||||
return 301 https://git.charlesreid1.com$request_uri; |
||||
} |
||||
} |
||||
|
||||
server { |
||||
listen 80; |
||||
listen [::]:80; |
||||
server_name charlesreid1.com; |
||||
location / { |
||||
return 301 https://charlesreid1.com$request_uri; |
||||
} |
||||
} |
||||
|
@ -1,133 +0,0 @@
@@ -1,133 +0,0 @@
|
||||
#################### |
||||
# |
||||
# charlesreid1.com |
||||
# https |
||||
# 443 |
||||
# |
||||
# charlesreid1.com and www.charlesreid1.com |
||||
# should handle the following cases: |
||||
# - w/ and wiki/ should reverse proxy story_mw |
||||
# - phpMyAdmin/ should reverse proxy stormy_myadmin |
||||
# |
||||
# git.charlesreid1.com should handle: |
||||
# - all requests should reverse proxy stormy_gitea |
||||
# |
||||
#################### |
||||
|
||||
server { |
||||
# https://charlesreid1.com |
||||
listen 443; |
||||
listen [::]:443; |
||||
server_name charlesreid1.com; |
||||
|
||||
ssl on; |
||||
ssl_certificate /etc/letsencrypt/live/charlesreid1.com-0001/fullchain.pem; |
||||
ssl_certificate_key /etc/letsencrypt/live/charlesreid1.com-0001/privkey.pem; |
||||
include /etc/letsencrypt/options-ssl-nginx.conf; |
||||
|
||||
client_max_body_size 100m; |
||||
|
||||
location / { |
||||
#try_files $uri $uri/ =404; |
||||
root /www/charlesreid1.com/htdocs; |
||||
index index.html; |
||||
} |
||||
|
||||
location /wiki/ { |
||||
proxy_set_header X-Real-IP $remote_addr; |
||||
proxy_set_header X-Forwarded-For $remote_addr; |
||||
proxy_set_header Host $host; |
||||
proxy_pass http://stormy_mw:8989/wiki/; |
||||
} |
||||
|
||||
location /w/ { |
||||
proxy_set_header X-Real-IP $remote_addr; |
||||
proxy_set_header X-Forwarded-For $remote_addr; |
||||
proxy_set_header Host $host; |
||||
proxy_pass http://stormy_mw:8989/w/; |
||||
} |
||||
|
||||
location /phpMyAdmin/ { |
||||
proxy_set_header X-Real-IP $remote_addr; |
||||
proxy_set_header X-Forwarded-For $remote_addr; |
||||
proxy_set_header Host $host; |
||||
proxy_pass http://stormy_myadmin:80/wiki/; |
||||
} |
||||
|
||||
# ~ means case-sensitive regex match, rather than string literal |
||||
# (ignores .git, .gitignore, etc.) |
||||
location ~ /\.git { |
||||
deny all; |
||||
} |
||||
} |
||||
|
||||
|
||||
server { |
||||
# https://www.charlesreid1.com |
||||
listen 443; |
||||
listen [::]:443; |
||||
server_name www.charlesreid1.com; |
||||
|
||||
ssl on; |
||||
ssl_certificate /etc/letsencrypt/live/www.charlesreid1.com/fullchain.pem; |
||||
ssl_certificate_key /etc/letsencrypt/live/www.charlesreid1.com/privkey.pem; |
||||
include /etc/letsencrypt/options-ssl-nginx.conf; |
||||
|
||||
client_max_body_size 100m; |
||||
|
||||
location / { |
||||
#try_files $uri $uri/ =404; |
||||
root /www/charlesreid1.com/htdocs; |
||||
index index.html; |
||||
} |
||||
|
||||
location /wiki/ { |
||||
proxy_set_header X-Real-IP $remote_addr; |
||||
proxy_set_header X-Forwarded-For $remote_addr; |
||||
proxy_set_header Host $host; |
||||
proxy_pass http://stormy_mw:8989/wiki/; |
||||
} |
||||
|
||||
location /w/ { |
||||
proxy_set_header X-Real-IP $remote_addr; |
||||
proxy_set_header X-Forwarded-For $remote_addr; |
||||
proxy_set_header Host $host; |
||||
proxy_pass http://stormy_mw:8989/w/; |
||||
} |
||||
|
||||
location /phpMyAdmin/ { |
||||
proxy_set_header X-Real-IP $remote_addr; |
||||
proxy_set_header X-Forwarded-For $remote_addr; |
||||
proxy_set_header Host $host; |
||||
proxy_pass http://stormy_myadmin:80/wiki/; |
||||
} |
||||
|
||||
location ~ /\.git { |
||||
deny all; |
||||
} |
||||
} |
||||
|
||||
|
||||
server { |
||||
# https://git.charlesreid1.com |
||||
listen 443; |
||||
listen [::]:443; |
||||
server_name git.charlesreid1.com; |
||||
|
||||
ssl on; |
||||
ssl_certificate /etc/letsencrypt/live/git.charlesreid1.com/fullchain.pem; |
||||
ssl_certificate_key /etc/letsencrypt/live/git.charlesreid1.com/privkey.pem; |
||||
include /etc/letsencrypt/options-ssl-nginx.conf; |
||||
|
||||
client_max_body_size 100m; |
||||
|
||||
location / { |
||||
proxy_set_header X-Real-IP $remote_addr; |
||||
proxy_set_header X-Forwarded-For $remote_addr; |
||||
proxy_set_header Host $host; |
||||
proxy_pass http://stormy_gitea:3000/; |
||||
} |
||||
|
||||
} |
||||
|
||||
|
Loading…
Reference in new issue