First attempt at proxying foundry.

This commit is contained in:
Colin Diem
2022-01-24 01:07:32 -05:00
parent b5aad3f94f
commit f8df5fd547

View File

@@ -116,6 +116,20 @@ server {
error_log /var/log/nginx/ha-error.log; error_log /var/log/nginx/ha-error.log;
} }
# Foundry config
server {
listen 80;
server_name foundry.colindiem.com;
location / {
include /etc/nginx/includes/proxy.conf;
proxy_pass http://192.168.1.12:30000/;
}
access_log /var/log/nginx/foundry-access.log combined;
error_log /var/log/nginx/foundry-error.log error;
}
# Default # Default
server { server {
listen 80 default_server; listen 80 default_server;