Guest User

Untitled

a guest
Feb 11th, 2023
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. listen 443 ssl;
  5.  
  6.  
  7. ssl on;
  8. ssl_certificate /home/cert/certificates.crt;
  9. ssl_certificate_key /home/cert/private.key;
  10.  
  11. server_name example.com www.example.com;
  12.  
  13. location / {
  14. proxy_pass http://localhost:3000/;
  15. }
  16. }
  17.  
Add Comment
Please, Sign In to add comment