aports/testing/otrs/otrs.nginx.conf
Valery Kartel bec0e79ed2 testing/otrs: new aport
Flexible Open Source Service Management Software
http://www.otrs.org/
2017-02-16 07:24:05 +00:00

26 lines
464 B
Plaintext

#
# 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;
}