UNPKG

generator-jhipster-docker

Version:

Additional Docker support: Docker Hub, Local SMTP Server, NGinx

25 lines (24 loc) 554 B
server { listen 80; index index.html; server_name localhost; error_log /var/log/nginx/error.log; location / { root /usr/share/nginx/html; } location /api { proxy_pass http://backend/api; } location /v2 { proxy_pass http://backend/v2; } location /management { proxy_pass http://backend/management; } location /swagger-ui { proxy_pass http://backend/swagger-ui; } location /swagger-resources { proxy_pass http://backend/swagger-resources; } }