forked from exozyme/nginx
13 lines
299 B
Text
13 lines
299 B
Text
|
server {
|
||
|
listen 443 ssl http2;
|
||
|
listen [::]:443 ssl http2;
|
||
|
server_name ci.exozy.me;
|
||
|
|
||
|
ssl_certificate /etc/letsencrypt/live/exozy.me/fullchain.pem;
|
||
|
ssl_certificate_key /etc/letsencrypt/live/exozy.me/privkey.pem;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://localhost:22080;
|
||
|
}
|
||
|
}
|