12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- events {
- }
- http {
-
- server {
-
- listen 443 ssl;
-
- server_name kea.example.org;
-
- ssl_certificate /path/to/kea-proxy.crt;
- ssl_certificate_key /path/to/kea-proxy.key;
-
- ssl_client_certificate /path/to/ca.crt;
-
- ssl_verify_client on;
-
-
-
-
- location / {
- proxy_pass http://127.0.0.1:8000;
- }
- }
- }
|