initial nginx conf

This commit is contained in:
Adam 2023-09-06 16:49:15 -05:00
parent 21979840ee
commit 8cfb510d5b
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ services:
proxy:
image: nginx:stable
container_name: "cors-proxy-nginx"
ports:
- 8080:80
volumes:
- ./nginx-conf/default.conf.template:/etc/nginx/templates/default.conf.template
- ./nginx_logs:/var/log/nginx

View File

@ -7,6 +7,6 @@ server {
error_log /var/log/nginx/error.log debug;
location /service {
proxy_pass http://host.docker.internal:3000;
proxy_pass http://192.168.2.214:3000/;
}
}