summaryrefslogtreecommitdiff
path: root/debian/nginx.conf
blob: a8744a85d8616a5e4fe4e58cb3c2da9acccf6778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {
        listen   80;
        root /usr/share/rss-bridge;
        index index.php;

        location /index.php {
                fastcgi_pass unix:/var/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }
}