blob: 88d1100932fcd8aef4102a0c9b8925b511c30372 (
plain)
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
|
#
# 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;
}
|