Advertisement
possebon

Changed zzz_servicedesk_otobo.conf

Oct 17th, 2021
2,530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <VirtualHost *:80>
  2. # Please change here the otobo admin mail address
  3. ServerAdmin youremail@yourdomain.com
  4.  
  5.  
  6. # Please change here the FQDN or hostname, you like to use with OTOBO
  7. ServerName servicedesk.yourdomain.com
  8.  
  9. # Please change here and add more different FQDN´s or hostnames, you like to use with OTOBO
  10. ServerAlias servicedesk.yourdomain.com
  11.  
  12.  
  13. DocumentRoot /opt/otobo/var/httpd/htdocs
  14. HostnameLookups Off
  15. UseCanonicalName Off
  16. ServerSignature Off
  17.  
  18. Alias /otobo-web/ "/opt/otobo/var/httpd/htdocs/"
  19. ScriptAlias / "/opt/otobo/bin/cgi-bin/"
  20.  
  21. <IfModule mod_perl.c>
  22.  
  23. # Setup environment and preload modules
  24. PerlOptions +Parent
  25. Perlrequire /opt/otobo/scripts/apache2-perl-startup.pl
  26.  
  27. # Reload Perl modules when changed on disk
  28. PerlModule Apache2::Reload
  29. PerlInitHandler Apache2::Reload
  30.  
  31. # general mod_perl2 options
  32. <Location />
  33. DirectoryIndex index.pl
  34. AddHandler perl-script .pl .cgi
  35. # ErrorDocument 403 /otobo/customer.pl
  36. ErrorDocument 403 /otobo/index.pl
  37. #SetHandler perl-script
  38. PerlResponseHandler ModPerl::Registry
  39. Options +ExecCGI
  40. PerlOptions +ParseHeaders
  41. PerlOptions +SetupEnv
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement