Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. server {
  2. listen 80;
  3. #listen 443 ssl default_server;
  4. #listen [::]:443 ssl default_server;
  5. root /home/ubuntu/webroot;
  6. index index.html index.htm;
  7. server_name iwl.jakesandbox.com;
  8. error_page 404 /404.html;
  9. location = /404.html {
  10. root /home/ubuntu/er/;
  11. internal;
  12. }
  13. #ssl_certificate /etc/letsencrypt/live/jakesandbox.com/fullchain.pem;
  14. #ssl_certificate_key /etc/letsencrypt/live/jakesandbox.com/privkey.pem;
  15. location / {
  16. proxy_pass http://localhost:6060/;
  17. #proxy_ssl_trusted_certificate /etc/letsencrypt/live/jakesandbox.com/fullchain.pem;
  18. #proxy_ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement