master
Matthew 2025-03-21 15:27:37 -04:00
parent 33f60e2d81
commit d648232d38
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name smm.libraryofcode.org;
ssl_certificate /etc/nginx/ssl/org.chain.crt;
ssl_certificate_key /etc/nginx/ssl/org.key.pem;
#limit_req zone=one burst=15;
location / {
proxy_pass http://localhost:8080;
}
}