summarylogtreecommitdiffstats
path: root/nginx.conf
blob: 781af6b0c9905773cc8d716f3af362e8e6bfccb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {
    server_name YOUR_HOSTNAME;
    listen 80;
    listen [::]:80;

    root /usr/share/webapps/stickerpicker/;
    index index.html;

    location /packs {
        root /var/lib/stickerpicker/;
    }
}