Created
February 26, 2019 03:10
-
-
Save andpupilo0182/9f071f37d4855f83b1f78bbeccb7c092 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<VirtualHost *:80> | |
ServerAdmin admin@empresa_xpto.com.br | |
ServerName chamado.empresa.com.br | |
ErrorLog logs/chamado-error_log | |
CustomLog logs/chamado-access_log common | |
DocumentRoot /opt/otrs/bin/cgi-bin/ | |
<Location /> | |
ErrorDocument 403 /customer.pl | |
DirectoryIndex customer.pl | |
AddHandler perl-script .pl .cgi | |
PerlResponseHandler ModPerl::Registry | |
Options +ExecCGI | |
PerlOptions +ParseHeaders | |
PerlOptions +SetupEnv | |
Order allow,deny | |
Allow from all | |
</Location> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment