about summary refs log tree commit diff stats
path: root/tools/conf/etc/nginx/sites/default.conf
blob: dcb076f8547e0bd73297eaeb641a170139d59341 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
server {
    listen 443 ssl;
    # listen [::]:443 ssl;

    server_name machine.example;

    root /srv/www/default;

    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 /bug {
        index index.php;
    	alias /srv/www/default/flyspray;
        try_files $uri $uri/ index.php$is_args$args;
    }

    location ~  ^/bug(.+\.php)$ { ### This location block was the solution
    	alias /srv/www/default/flyspray;

	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$1;
        # fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_pass 127.0.0.1:9000;
    }

    location / {
    	alias /srv/www/default/pmwiki/;
	index pmwiki.php
        try_files $uri $uri/ /pmwiki.php$is_args$args;
    }

    location ~ \.php$ {
    	alias /srv/www/default/pmwiki;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_index pmwiki.php;
        try_files $uri /pmwiki.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;
    }
}