Advertisement
Guest User

Untitled

a guest
Nov 11th, 2011
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. # ispCP ω (OMEGA) a Virtual Hosting Control Panel
  2. # Copyright (C) 2006-2010 by isp Control Panel - http://ispcp.net
  3. #
  4. # Version: $Id: 00_master.conf 2505 2010-01-06 20:30:53Z nuxwin $
  5. #
  6. # The contents of this file are subject to the Mozilla Public License
  7. # Version 1.1 (the "License"); you may not use this file except in
  8. # compliance with the License. You may obtain a copy of the License at
  9. # http://www.mozilla.org/MPL/
  10. #
  11. # Software distributed under the License is distributed on an "AS IS"
  12. # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
  13. # License for the specific language governing rights and limitations
  14. # under the License.
  15. #
  16. # The Original Code is "ispCP ω (OMEGA) a Virtual Hosting Control Panel".
  17. #
  18. # The Initial Developer of the Original Code is ispCP Team.
  19. # Portions created by Initial Developer are Copyright (C) 2006-2010 by
  20. # isp Control Panel. All Rights Reserved.
  21. #
  22. # The ispCP ω Home Page is:
  23. #
  24. # http://isp-control.net
  25. #
  26.  
  27. #
  28. # Master Begin
  29. #
  30.  
  31. <VirtualHost 127.0.0.1:80>
  32.  
  33. ServerAdmin sule89@live.de
  34. DocumentRoot /var/www/ispcp/gui
  35.  
  36. ServerName server.party-server.com
  37.  
  38. Alias /errors /var/www/ispcp/gui/errordocs/
  39.  
  40. ErrorDocument 401 /errors/401.html
  41. ErrorDocument 403 /errors/403.html
  42. ErrorDocument 404 /errors/404.html
  43. ErrorDocument 500 /errors/500.html
  44. ErrorDocument 503 /errors/503.html
  45.  
  46. Alias /pma /var/www/ispcp/gui/tools/pma/
  47. Alias /webmail /var/www/ispcp/gui/tools/webmail/
  48. Alias /ftp /var/www/ispcp/gui/tools/filemanager/
  49.  
  50. <IfModule suexec_module>
  51. SuexecUserGroup vu2000 vu2000
  52. </IfModule>
  53.  
  54. <Directory /var/www/ispcp/gui>
  55. Options -Indexes Includes FollowSymLinks MultiViews
  56. AllowOverride None
  57. Order allow,deny
  58. Allow from all
  59. </Directory>
  60.  
  61. <IfModule mod_fcgid.c>
  62. <Directory /var/www/ispcp/gui>
  63. FCGIWrapper /var/www/fcgi/master/php5-fcgi-starter .php
  64. Options +ExecCGI
  65. </Directory>
  66. <Directory "/var/www/fcgi/master">
  67. AllowOverride None
  68. Options +ExecCGI MultiViews -Indexes
  69. Order allow,deny
  70. Allow from all
  71. </Directory>
  72. </IfModule>
  73. <IfModule mod_fastcgi.c>
  74. ScriptAlias /php5/ /var/www/fcgi/master/
  75. <Directory "/var/www/fcgi/master">
  76. AllowOverride None
  77. Options +ExecCGI MultiViews -Indexes
  78. Order allow,deny
  79. Allow from all
  80. </Directory>
  81. </IfModule>
  82.  
  83. <IfModule mod_php5.c>
  84. <Directory /var/www/ispcp/gui>
  85. php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/var/run/ispcp.lock:/proc/:/bin/df:/bin/mount:/var/log/rkhunter.log:/var/log/chkrootkit.log:/usr/share/php/"
  86. php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
  87. php_admin_value upload_tmp_dir "/var/www/ispcp/gui/phptmp/"
  88. </Directory>
  89. </IfModule>
  90.  
  91. </VirtualHost>
  92.  
  93. #
  94. # Master End
  95. #
  96.  
  97.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement