You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
smallstep-certificates/examples/docker/nginx/site.conf

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;
}
}