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
411 B
19 lines
411 B
|
|
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name grafana.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:3100;
|
|
}
|
|
}
|