- server {
- listen 443 default_server ssl http2;
- listen [::]:443 ssl http2;
-
- server_name lahelice.vespot.co;
-
- ssl_certificate /etc/nginx/ssl/live/[domain-name]/fullchain.pem;
- ssl_certificate_key /etc/nginx/ssl/live/[domain-name]/privkey.pem;
-
- location / {
- proxy_pass http://frontpod:8080;
- }
- }
|