bitbot-3.11-fork/docs/rest_api/nginx

14 lines
295 B
Text
Raw Normal View History

2019-09-13 14:50:14 +00:00
server {
server_name example.com;
listen 5000 ssl;
listen [::]:5000 ssl;
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem;
location / {
proxy_pass http://localhost:5001;
}
}