mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-22 07:53:38 +01:00
23a5da8dc6
Add mTLS docker-compose example
16 lines
413 B
Plaintext
16 lines
413 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
|
|
ssl_certificate /etc/nginx/certs/server.crt;
|
|
ssl_certificate_key /etc/nginx/certs/server.key;
|
|
ssl_client_certificate /etc/nginx/certs/ca.crt;
|
|
ssl_verify_client on;
|
|
|
|
location / {
|
|
if ($ssl_client_verify != SUCCESS) {
|
|
return 403;
|
|
}
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
}
|
|
} |