events{} http { include /etc/nginx/mime.types; server { listen 80; # listen 443; # ssl on; # ssl_certificate /etc/certificates/localhost.crt; # ssl_certificate_key /etc/certificates/localhost.key; # ssl_ciphers HIGH:!aNULL:!MD5; server_name localhost; root /usr/share/nginx/html; index index.html; location /api/registration-name-check/ { proxy_pass http://eks-br2s-registration-name-check-service/; } location /api/registration-name-register/ { proxy_pass http://eks-br2s-registration-name-register-service/; } location /api/registration-payment/ { proxy_pass http://eks-br2s-registration-payment-service/; } location /api/compliance-data-aggregation/ { proxy_pass http://eks-br2s-compliance-data-aggregation-service/; } location /api/compliance-panel/ { proxy_pass http://eks-br2s-compliance-panel-service/; } location / { try_files $uri $uri/ /index.html; } } }