Update nginx.conf

This commit is contained in:
Manevolent 2023-04-25 17:17:06 -06:00 committed by GitHub
parent cc468ac1fa
commit 7c1481e2ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ http {
tcp_nopush on;
server_names_hash_bucket_size 128;
upstream matrix_nurd {
upstream watch_mommys_plumbing {
server 172.31.206.1:80;
}
@ -25,7 +25,7 @@ http {
listen 80;
server_name watch.mommys.plumbing;
location / {
proxy_pass http://matrix_nurd;
proxy_pass http://watch_mommys_plumbing;
}
}
}