mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-17 15:29:21 +00:00
11 lines
285 B
Plaintext
11 lines
285 B
Plaintext
server {
|
|
listen 443 ssl;
|
|
server_name localhost;
|
|
ssl_certificate /var/local/step/site.crt;
|
|
ssl_certificate_key /var/local/step/site.key;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
}
|
|
} |