72 lines
1.4 KiB
Nginx Configuration File
72 lines
1.4 KiB
Nginx Configuration File
# See: https://www.nginx.com/resources/wiki/start/topics/examples/full/
|
|
|
|
events {
|
|
|
|
}
|
|
|
|
stream {
|
|
include /etc/nginx/stream.d/*.conf;
|
|
}
|
|
|
|
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;
|
|
|
|
upstream watch_mommys_plumbing {
|
|
server 172.31.206.1:80;
|
|
}
|
|
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;
|
|
}
|
|
upstream maud_needs_rocks {
|
|
server 172.31.206.1:80;
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name watch.mommys.plumbing;
|
|
location / {
|
|
proxy_pass http://watch_mommys_plumbing;
|
|
}
|
|
}
|
|
server {
|
|
listen 80;
|
|
server_name pepperchan.shop;
|
|
location / {
|
|
proxy_pass http://pepperchan_shop;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|
|
}
|