You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
410 B

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name gitlab.windymuse.site;
ssl_certificate /ssl/fullchain.crt;
ssl_certificate_key /ssl/private.pem;
ssl_session_timeout 10m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
client_max_body_size 100m;
location / {
proxy_pass http://192.168.31.249:8929;
}
}