File: site.conf

package info (click to toggle)
golang-github-smallstep-certificates 0.29.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,720 kB
  • sloc: sh: 385; makefile: 129
file content (11 lines) | stat: -rw-r--r-- 285 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
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;
    }
}