aboutsummaryrefslogtreecommitdiffstats
path: root/testing/otrs/otrs.nginx.conf
diff options
context:
space:
mode:
Diffstat (limited to 'testing/otrs/otrs.nginx.conf')
-rw-r--r--testing/otrs/otrs.nginx.conf25
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/otrs/otrs.nginx.conf b/testing/otrs/otrs.nginx.conf
new file mode 100644
index 0000000000..88d1100932
--- /dev/null
+++ b/testing/otrs/otrs.nginx.conf
@@ -0,0 +1,25 @@
+#
+# include this file somewhere to 'server' section
+#
+# server {
+# ...
+# include otrs.conf;
+# ...
+# }
+#
+
+root /var/lib/otrs/var/httpd/htdocs;
+index index.html;
+
+location /otrs-web {
+ gzip on;
+ alias /var/lib/otrs/var/httpd/htdocs;
+}
+
+location ~ ^/otrs/(.*\.pl)(/.*)?$ {
+ gzip off;
+ include fastcgi_params;
+ fastcgi_pass unix:/var/lib/otrs/var/run/socket-1;
+ fastcgi_index index.pl;
+ fastcgi_param SCRIPT_FILENAME /var/lib/otrs/bin/fcgi-bin/$1;
+}