File: default

package info (click to toggle)
python-certbot-nginx 0.28.0-1~deb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 628 kB
  • sloc: python: 4,190; makefile: 171
file content (10 lines) | stat: -rw-r--r-- 211 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
server {
    listen       myhost default_server;
    listen       otherhost default_server;
    server_name "www.example.org";

    location / {
        root   html;
        index  index.html index.htm;
    }
}