Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 443 ssl;
- server_name pos-api-alpha;
- ssl_certificate /etc/nginx/certs/localhost.crt;
- ssl_certificate_key /etc/nginx/certs/localhost.key;
- location / {
- proxy_pass http://pos-apollo-alpha:5000/;
- }
- }
- server {
- listen 443 ssl;
- server_name pos-api-dev;
- ssl_certificate /etc/nginx/certs/localhost.crt;
- ssl_certificate_key /etc/nginx/certs/localhost.key;
- location / {
- proxy_pass http://pos-apollo-dev:5000/;
- }
- }
Add Comment
Please, Sign In to add comment