mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-07 02:09:46 -06:00
15 lines
374 B
Nginx Configuration File
15 lines
374 B
Nginx Configuration File
# Dev/Test only: Not required in production
|
|
# Nginx configuration for testing custom CA trust functionality
|
|
|
|
events {}
|
|
http {
|
|
server {
|
|
listen 443 ssl;
|
|
ssl_certificate /etc/nginx/certs/server.crt;
|
|
ssl_certificate_key /etc/nginx/certs/server.key;
|
|
location / {
|
|
return 200 "hello from tls\n";
|
|
}
|
|
}
|
|
}
|