28 lines
484 B
Nginx Configuration File
Raw 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-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;
upstream matrix_nurd {
2023-04-23 21:55:43 -06:00
server 172.31.207.1:80;
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 / {
proxy_pass http://matrix_nurd;
}
}
}