Advertisement
mobilefish

Untitled

Dec 8th, 2020
2,006
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.34 KB | None | 0 0
  1. server {
  2.        
  3.         listen       443 ssl;
  4.         server_name  test.mydomain.com;  
  5.         ssl_certificate c:/ssl/certificate.crt;
  6.         ssl_certificate_key c:/ssl/private.key;
  7.         error_page   500 502 503 504  /50x.html;
  8.        
  9.         location /web/ {
  10.            proxy_pass   http://myapp/web/;
  11.                    
  12.         }        
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement