change to subdomain

master
Matthew 2024-12-05 10:36:22 -05:00
parent 66bae18268
commit 266c2e40c0
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name offsite-ejbca.mracs.dev;
location / {
allow 63.141.252.133
deny all;
proxy_pass http://localhost:7562;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}