about summary refs log tree commit diff stats
path: root/tools/conf/etc/nginx/sites-enabled/forum.conf
diff options
context:
space:
mode:
authorpunk <punk@libernaut>2021-04-29 16:11:04 +0100
committerpunk <punk@libernaut>2021-04-29 16:11:25 +0100
commit9bef2e2b7ea351b6b1cb490597356677db61ff34 (patch)
treec36ae24aa3c36f6c19284c7d4da7c25a620bfabf /tools/conf/etc/nginx/sites-enabled/forum.conf
parent6b5cf63d1987889e272643bf7eeb7725df856d11 (diff)
parent5e601f7ee14830ef645ee3d3b1bcdce7450a5ce3 (diff)
downloaddoc-master.tar.gz
release 0.7.2 HEAD master
Diffstat (limited to 'tools/conf/etc/nginx/sites-enabled/forum.conf')
-rw-r--r--tools/conf/etc/nginx/sites-enabled/forum.conf39
1 files changed, 0 insertions, 39 deletions
diff --git a/tools/conf/etc/nginx/sites-enabled/forum.conf b/tools/conf/etc/nginx/sites-enabled/forum.conf
deleted file mode 100644
index 14350e3..0000000
--- a/tools/conf/etc/nginx/sites-enabled/forum.conf
+++ /dev/null
@@ -1,39 +0,0 @@
-server {
-    listen 8080;
-    server_name forum.server.ank;
-
-    access_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_forum,nohostname main;
-    error_log syslog:server=unix:/dev/log,facility=daemon,tag=nginx_forum_err,nohostname debug;
-
-    root /srv/www/forum;
-
-    location / {
-        index index.php;
-        try_files $uri $uri/ index.php$is_args$args;
-    }
-
-    location ~ [^/]\.php(/|$) {
-
-        fastcgi_split_path_info ^(.+?\.php)(/.*)$;
-        if (!-f $document_root$fastcgi_script_name) {
-            return 404;
-        }
-
-        # Mitigate https://httpoxy.org/ vulnerabilities
-        fastcgi_param HTTP_PROXY "";
-
-        fastcgi_pass 127.0.0.1:9000;
-        fastcgi_index index.php;
-
-        # include the fastcgi_param setting
-        include fastcgi_params;
-
-        # SCRIPT_FILENAME parameter is used for PHP FPM determining
-        #  the script name. If it is not set in fastcgi_params file,
-        # i.e. /etc/nginx/fastcgi_params or in the parent contexts,
-        # please comment off following line
-        fastcgi_param REQUEST_METHOD $request_method;
-        fastcgi_param  SCRIPT_FILENAME   $document_root$fastcgi_script_name;
-    }
-
-}