Skip to content
Snippets Groups Projects
Commit 7bfed703 authored by Jens Thomae's avatar Jens Thomae
Browse files

feat: add basic nginx http reverse proxy

parent fc0956ee
Branches feature/cd-pipeline
No related tags found
1 merge request!22detectorpages are added
......@@ -28,10 +28,8 @@ services:
- 443:443
restart: always
volumes:
- ./nginx.prod.conf:/etc/nginx/conf.d/nginx.conf:ro
- ./nginx.prod.conf:/etc/nginx/conf.d/default.conf:ro
volumes:
nustar_data:
external: true
mongo_data:
external: true
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://nustar_app:3000;
}
# Redirect HTTP to HTTPS
# location / {
# return 301 https://$host$request_uri;
# }
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment