Update nginx.conf

adding new site
This commit is contained in:
nerdfacenyan 2024-04-26 20:15:37 -04:00 committed by GitHub
parent c6d0e9e357
commit ab9682a793
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,6 +28,9 @@ http {
} }
upstream rpwriting_com { upstream rpwriting_com {
server 172.31.23.2:80; server 172.31.23.2:80;
}
upstream pepperchan.shop {
server 172.31.206.1:80;
} }
server { server {
listen 80; listen 80;
@ -35,6 +38,13 @@ http {
location / { location / {
proxy_pass http://watch_mommys_plumbing; proxy_pass http://watch_mommys_plumbing;
} }
}
server {
listen 80;
server_name pepperchan.shop;
location / {
proxy_pass http://pepperchan.shop;
}
} }
server { server {
listen 80; listen 80;