summaryrefslogtreecommitdiffstats
path: root/sites/graph.krebsco.de/nginx/sites-available/graph.conf
blob: 98651cecb4fc9590ae4e79b796b012cedeb81454 (plain)
1
2
3
4
5
6
7
8
9
10
11
server {
        # graph hosting internal
        listen <internal-ip>:80;
        server_name graph; # or your hostname
        access_log /var/log/nginx/log/graph.log main;
        default_type text/plain;
        location / {
                root    /var/www/graph;
        }
}