2024-12-05 10:36:22 -05:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
|
|
|
listen [::]:443 ssl http2;
|
|
|
|
server_name offsite-ejbca.mracs.dev;
|
|
|
|
|
|
|
|
location / {
|
2024-12-05 10:41:19 -05:00
|
|
|
allow 63.141.252.133;
|
2024-12-05 10:36:22 -05:00
|
|
|
deny all;
|
2024-12-22 21:14:04 -05:00
|
|
|
proxy_pass https://localhost:7563;
|
2024-12-05 10:36:22 -05:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
2024-12-05 13:05:54 -05:00
|
|
|
proxy_set_header X-Client-Cert $http_x_client_cert;
|
2024-12-22 20:49:16 -05:00
|
|
|
proxy_set_header SSL_CLIENT_CERT $ssl_client_cert;
|
2024-12-05 13:05:54 -05:00
|
|
|
proxy_set_header X-Client-Verify $http_x_client_verify;
|
2024-12-05 10:36:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|