summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/paste-tls.conf
blob: 6cd329f677e543402838317f28914a5056ad6616 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
server {
    listen       443 ssl;
    server_name  paste.tozt.net;

    access_log  /var/log/nginx/paste.access.log;
    error_log   /var/log/nginx/paste.error.log;

    include ssl;

    include      /etc/nginx/mime.types.paste;

    root         /home/doy/paste;
    default_type text/plain;
    gzip_types   text/plain;

    location / { }
}
# vim:ft=nginx