72 lines
1.4 KiB
Nginx Configuration File
Raw Permalink Normal View History

2023-04-23 19:48:17 -06:00
# See: https://www.nginx.com/resources/wiki/start/topics/examples/full/
2023-04-23 19:50:20 -06:00
events {
}
2023-04-24 15:36:51 -06:00
stream {
include /etc/nginx/stream.d/*.conf;
}
2023-04-23 19:48:17 -06:00
http {
include conf/mime.types;
include /etc/nginx/proxy.conf;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
server_names_hash_bucket_size 128;
2023-04-25 17:17:06 -06:00
upstream watch_mommys_plumbing {
2023-04-24 15:22:33 -06:00
server 172.31.206.1:80;
2023-04-23 19:48:17 -06:00
}
2023-04-25 18:24:14 -06:00
upstream glower_agency {
server 172.31.206.2:80;
}
upstream wiretap_glower_agency {
server 172.31.206.2:80;
}
upstream pepperchan_shop {
server 172.31.206.1:80;
2024-11-05 09:22:03 -07:00
}
upstream maud_needs_rocks {
2024-04-26 20:15:37 -04:00
server 172.31.206.1:80;
2024-11-05 09:22:03 -07:00
}
2023-04-23 19:48:17 -06:00
server {
listen 80;
2023-04-23 21:55:43 -06:00
server_name watch.mommys.plumbing;
2023-04-23 19:48:17 -06:00
location / {
2023-04-25 17:17:06 -06:00
proxy_pass http://watch_mommys_plumbing;
2023-04-23 19:48:17 -06:00
}
}
2024-04-26 20:15:37 -04:00
server {
listen 80;
server_name pepperchan.shop;
location / {
proxy_pass http://pepperchan_shop;
2024-04-26 20:15:37 -04:00
}
}
2023-04-25 18:24:14 -06:00
server {
listen 80;
server_name glower.agency;
location / {
proxy_pass http://glower_agency;
}
}
server {
listen 80;
server_name wiretap.glower.agency;
location / {
proxy_pass http://wiretap_glower_agency;
}
}
server {
listen 80;
server_name maud.needs.rocks;
location / {
proxy_pass http://maud_needs_rocks;
}
}
2023-04-23 19:48:17 -06:00
}