about summary refs log tree commit diff stats
path: root/linux/conf/nginx/sites/flyspray.conf
diff options
context:
space:
mode:
authorpunk <punk@libernaut>2021-04-29 16:10:16 +0100
committerpunk <punk@libernaut>2021-04-29 16:10:16 +0100
commit5e601f7ee14830ef645ee3d3b1bcdce7450a5ce3 (patch)
treefd61f912b509c9056e79b9f0ee6b700584c85b57 /linux/conf/nginx/sites/flyspray.conf
parent3790c6ecd836d25815f7cb8deef62a77d4f3ac9f (diff)
downloaddoc-5e601f7ee14830ef645ee3d3b1bcdce7450a5ce3.tar.gz
linux tools configs moved to linux folder
Diffstat (limited to 'linux/conf/nginx/sites/flyspray.conf')
-rw-r--r--linux/conf/nginx/sites/flyspray.conf40
1 files changed, 40 insertions, 0 deletions
diff --git a/linux/conf/nginx/sites/flyspray.conf b/linux/conf/nginx/sites/flyspray.conf
new file mode 100644
index 0000000..ba174f1
--- /dev/null
+++ b/linux/conf/nginx/sites/flyspray.conf
@@ -0,0 +1,40 @@
+
+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;
+    }
+}