summaryrefslogtreecommitdiffstats
path: root/modules/tozt/files/nginx/ttrss.conf
blob: 8680dcb0453fffd4de193f8578be5a57c0597a6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
server {
    listen       80;
    server_name  rss.tozt.net;

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

    rewrite      ^(.*) https://$host$1 permanent;
}
# vim:ft=nginx