about summary refs log blame commit diff stats
path: root/tools/conf/etc/nginx/sites/flyspray.conf
blob: ba174f19d40a9cf674fb4c5700b418da43f20fb4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
 



                          
                                
 
                                   

                    















                                   
                
                                                    




                                                 
                                       





                                                                         
server {
    listen 443 ssl;
    # listen [::]:443 ssl;

    server_name machine.example;

    root /srv/www/default/flyspray;
    index index.php;

    location /ports {
        alias /var/ports/ports;
        autoindex on;
    }

    location /distfiles {
        alias /var/ports/distfiles;
        autoindex on;
    }

    location /packages {
        root /var/ports/packages;
        autoindex off;
    }


    location / {
        try_files $uri $uri/ index.php$is_args$args;
    }

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_index index.php;
        try_files $uri /index.php =404;
        include /etc/nginx/fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        # fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_pass 127.0.0.1:9000;
    }
}