Advertisement
Guest User

Untitled

a guest
May 14th, 2018
635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 73.80 KB | None | 0 0
  1. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  2. # Direct modifications to the Apache configuration file may be lost upon subse quent regeneration of the #
  3. # configuration file. To have modifications retained, all modifications must b e checked into the #
  4. # configuration system by running: #
  5. # /usr/local/cpanel/bin/apache_conf_distiller --update #
  6. # To see if your changes will be conserved, regenerate the Apache configuratio n file by running: #
  7. # /usr/local/cpanel/bin/build_apache_conf #
  8. # and check the configuration file for your alterations. If your changes have been ignored, then they will #
  9. # need to be added directly to their respective template files. #
  10. # #
  11. # It is also possible to add custom directives to the various "Include" files loaded by this httpd.conf #
  12. # For detailed instructions on using Include files and the apache_conf_distill er with the new configuration #
  13. # system refer to the documentation at: https://go.cpanel.net/customdirectives #
  14. # #
  15. # This configuration file was built from the following templates: #
  16. # /var/cpanel/templates/apache2/main.default #
  17. # /var/cpanel/templates/apache2/main.local #
  18. # /var/cpanel/templates/apache2/vhost.default #
  19. # /var/cpanel/templates/apache2/vhost.local #
  20. # /var/cpanel/templates/apache2/ssl_vhost.default #
  21. # /var/cpanel/templates/apache2/ssl_vhost.local #
  22. # #
  23. # Templates with the '.local' extension will be preferred over templates with t he '.default' extension. #
  24. # The only template updated by the apache_conf_distiller is main.default. #
  25. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  26.  
  27.  
  28. Include "/usr/local/apache/conf/includes/pre_main_global.conf"
  29. Include "/usr/local/apache/conf/includes/pre_main_2.conf"
  30.  
  31.  
  32.  
  33. LoadModule bwlimited_module modules/mod_bwlimited.so
  34.  
  35.  
  36.  
  37.  
  38. Include "/usr/local/apache/conf/php.conf"
  39. Include "/usr/local/apache/conf/includes/errordocument.conf"
  40. Include "/usr/local/apache/conf/includes/account_suspensions.conf"
  41. Include "/usr/local/apache/conf/modsec2.conf"
  42.  
  43.  
  44. ErrorLog "logs/error_log"
  45. ScriptAliasMatch ^/?controlpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi
  46. ScriptAliasMatch ^/?cpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi
  47. ScriptAliasMatch ^/?kpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi
  48. ScriptAliasMatch ^/?securecontrolpanel/?$ /usr/local/cpanel/cgi-sys/sredirect.cg i
  49. ScriptAliasMatch ^/?securecpanel/?$ /usr/local/cpanel/cgi-sys/sredirect.cgi
  50. ScriptAliasMatch ^/?securewhm/?$ /usr/local/cpanel/cgi-sys/swhmredirect.cgi
  51. ScriptAliasMatch ^/?webmail(/.*|/?)$ /usr/local/cpanel/cgi-sys/wredirect.cgi
  52. ScriptAliasMatch ^/?whm/?$ /usr/local/cpanel/cgi-sys/whmredirect.cgi
  53. ScriptAliasMatch ^/Autodiscover/Autodiscover.xml /usr/local/cpanel/cgi-sys/autod iscover.cgi
  54. ScriptAliasMatch ^/autodiscover/autodiscover.xml /usr/local/cpanel/cgi-sys/autod iscover.cgi
  55.  
  56. RewriteEngine on
  57. AddType text/html .shtml
  58.  
  59. Alias /bandwidth /usr/local/bandmin/htdocs/
  60. Alias /img-sys /usr/local/cpanel/img-sys/
  61. Alias /mailman/archives /usr/local/cpanel/3rdparty/mailman/archives/public/
  62. Alias /pipermail /usr/local/cpanel/3rdparty/mailman/archives/public/
  63. Alias /sys_cpanel /usr/local/cpanel/sys_cpanel/
  64.  
  65.  
  66. ScriptAlias /cgi-sys /usr/local/cpanel/cgi-sys/
  67. ScriptAlias /mailman /usr/local/cpanel/3rdparty/mailman/cgi-bin/
  68.  
  69.  
  70. <Directory "/">
  71. AllowOverride All
  72. Options All
  73. </Directory>
  74.  
  75. <Directory "/usr/local/apache/htdocs">
  76. Options All
  77. AllowOverride None
  78. Require all granted
  79. </Directory>
  80.  
  81. <Files ~ "^error_log$">
  82. Order allow,deny
  83. Deny from all
  84.  
  85. Satisfy All
  86. </Files>
  87.  
  88. <Files ".ht*">
  89. Require all denied
  90. </Files>
  91.  
  92. <IfModule log_config_module>
  93. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" com bined
  94. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  95.  
  96. CustomLog "logs/access_log" common
  97.  
  98. <IfModule logio_module>
  99. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  100.  
  101. </IfModule>
  102.  
  103. </IfModule>
  104.  
  105. <IfModule alias_module>
  106. ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/"
  107.  
  108. </IfModule>
  109.  
  110. <Directory "/usr/local/apache/cgi-bin">
  111. AllowOverride None
  112. Options All
  113. Require all granted
  114. </Directory>
  115.  
  116. <IfModule mime_module>
  117. TypesConfig conf/mime.types
  118. AddType application/x-compress .Z
  119. AddType application/x-gzip .gz .tgz
  120.  
  121. </IfModule>
  122.  
  123. <IfModule prefork.c>
  124. Mutex default mpm-accept
  125.  
  126. </IfModule>
  127.  
  128. <IfModule mod_log_config.c>
  129. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" com bined
  130. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  131. LogFormat "%{Referer}i -> %U" referer
  132. LogFormat "%{User-agent}i" agent
  133.  
  134. CustomLog logs/access_log common
  135.  
  136. </IfModule>
  137.  
  138. <IfModule itk.c>
  139. Mutex default mpm-accept
  140.  
  141. </IfModule>
  142.  
  143. <IfModule worker.c>
  144. Mutex default mpm-accept
  145.  
  146. </IfModule>
  147.  
  148. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  149. # Direct modifications to the Apache configuration file may be lost upon subse quent regeneration of the #
  150. # configuration file. To have modifications retained, all modifications must b e checked into the #
  151. # configuration system by running: #
  152. # /usr/local/cpanel/bin/apache_conf_distiller --update #
  153. # To see if your changes will be conserved, regenerate the Apache configuratio n file by running: #
  154. # /usr/local/cpanel/bin/build_apache_conf #
  155. # and check the configuration file for your alterations. If your changes have been ignored, then they will #
  156. # need to be added directly to their respective template files. #
  157. # #
  158. # It is also possible to add custom directives to the various "Include" files loaded by this httpd.conf #
  159. # For detailed instructions on using Include files and the apache_conf_distill er with the new configuration #
  160. # system refer to the documentation at: https://go.cpanel.net/customdirectives #
  161. # #
  162. # This configuration file was built from the following templates: #
  163. # /var/cpanel/templates/apache2/main.default #
  164. # /var/cpanel/templates/apache2/main.local #
  165. # /var/cpanel/templates/apache2/vhost.default #
  166. # /var/cpanel/templates/apache2/vhost.local #
  167. # /var/cpanel/templates/apache2/ssl_vhost.default #
  168. # /var/cpanel/templates/apache2/ssl_vhost.local #
  169. # #
  170. # Templates with the '.local' extension will be preferred over templates with t he '.default' extension. #
  171. # The only template updated by the apache_conf_distiller is main.default. #
  172. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  173.  
  174.  
  175. PidFile /usr/local/apache/logs/httpd.pid
  176. Listen 0.0.0.0:80
  177. User nobody
  178. Group nobody
  179. ExtendedStatus On
  180. ServerAdmin info@s166-62-80-156.secureserver.net
  181. ServerName s166-62-80-156.secureserver.net
  182. LogLevel warn
  183.  
  184. # These can be set in WHM under 'Apache Global Configuration'
  185. Timeout 300
  186.  
  187. ServerSignature On
  188.  
  189.  
  190.  
  191. <IfModule prefork.c>
  192.  
  193.  
  194. </IfModule>
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202. RewriteEngine on
  203. RewriteMap LeechProtect prg:/usr/local/cpanel/bin/leechprotect
  204. Mutex file:/usr/local/apache/logs rewrite-map
  205.  
  206. # Set UserDir directory for all virtual hosts, except..
  207. UserDir public_html
  208. # when the following two modules are loaded
  209. <IfModule mod_ruid2.c>
  210. UserDir disabled
  211. </IfModule>
  212. <IfModule mpm_itk.c>
  213. UserDir disabled
  214. </IfModule>
  215.  
  216. # DirectoryIndex is set via the WHM -> Service Configuration -> Apache Setup -> DirectoryIndex Priority
  217. DirectoryIndex index.html.var index.htm index.html index.shtml index.xhtml index .wml index.perl index.pl index.plx index.ppl index.cgi index.jsp index.js index. jp index.php4 index.php3 index.php index.phtml default.htm default.html home.htm index.php5 Default.html Default.htm home.html
  218.  
  219. # SSLCipherSuite can be set in WHM under 'Apache Global Configuration'
  220.  
  221.  
  222. SSLPassPhraseDialog builtin
  223.  
  224. SSLUseStapling on
  225. SSLStaplingCache shmcb:/usr/local/apache/logs/stapling_cache_shmcb(256000)
  226. SSLStaplingReturnResponderErrors off
  227. SSLStaplingFakeTryLater off # since SSLStaplingReturnResponderErrors is off this being on doesn't make much sense
  228. SSLStaplingErrorCacheTimeout 60
  229. SSLSessionCache shmcb:/usr/local/apache/logs/ssl_gcache_data_shmcb(1024000)
  230.  
  231. SSLSessionCacheTimeout 300
  232. Mutex file:/usr/local/apache/logs ssl-cache
  233. SSLRandomSeed startup builtin
  234. SSLRandomSeed connect builtin
  235.  
  236.  
  237.  
  238. Listen 0.0.0.0:443
  239. AddType application/x-x509-ca-cert .crt
  240. AddType application/x-pkcs7-crl .crl
  241.  
  242.  
  243. AddHandler cgi-script .cgi .pl .plx .ppl .perl
  244. AddHandler server-parsed .shtml
  245. AddType text/html .shtml
  246. AddType application/x-tar .tgz
  247. AddType text/vnd.wap.wml .wml
  248. AddType image/vnd.wap.wbmp .wbmp
  249. AddType text/vnd.wap.wmlscript .wmls
  250. AddType application/vnd.wap.wmlc .wmlc
  251. AddType application/vnd.wap.wmlscriptc .wmlsc
  252.  
  253. <Location /whm-server-status>
  254. SetHandler server-status
  255. Order deny,allow
  256. Deny from all
  257.  
  258. Allow from 127.0.0.1 ::1
  259.  
  260. </Location>
  261.  
  262.  
  263.  
  264. # SUEXEC is supported
  265.  
  266. Include "/usr/local/apache/conf/includes/account_suspensions.conf"
  267. Include "/usr/local/apache/conf/includes/pre_virtualhost_global.conf"
  268. Include "/usr/local/apache/conf/includes/pre_virtualhost_2.conf"
  269.  
  270. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  271. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  272.  
  273. <VirtualHost 166.62.80.156:80>
  274. ServerName 166.62.80.156
  275. ServerAlias s166-62-80-156.secureserver.net
  276. DocumentRoot /usr/local/apache/htdocs
  277. ServerAdmin info@s166-62-80-156.secureserver.net
  278. <IfModule mod_suphp.c>
  279. suPHP_UserGroup nobody nobody
  280. </IfModule>
  281. </VirtualHost>
  282.  
  283.  
  284. # Default vhost for unbound IPs
  285.  
  286. <VirtualHost *>
  287. ServerName s166-62-80-156.secureserver.net
  288. DocumentRoot /usr/local/apache/htdocs
  289. ServerAdmin info@s166-62-80-156.secureserver.net
  290. <IfModule mod_suphp.c>
  291. suPHP_UserGroup nobody nobody
  292. </IfModule>
  293. </VirtualHost>
  294.  
  295. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  296.  
  297. <VirtualHost 166.62.80.156:80>
  298. ServerName whboo.com
  299. ServerAlias mail.whboo.com www.whboo.com
  300. DocumentRoot /home/whbooadmin/public_html
  301. ServerAdmin webmaster@whboo.com
  302. UseCanonicalName Off
  303. CustomLog /usr/local/apache/domlogs/whboo.com combined
  304. <IfModule log_config_module>
  305. <IfModule logio_module>
  306. CustomLog /usr/local/apache/domlogs/whboo.com-bytes_log "%{%s}t %I .\n%{%s }t %O ."
  307. </IfModule>
  308. </IfModule>
  309. ## User whbooadmin # Needed for Cpanel::ApacheConf
  310. <IfModule userdir_module>
  311. <IfModule !mpm_itk.c>
  312. <IfModule !ruid2_module>
  313. UserDir enabled whbooadmin
  314. </IfModule>
  315. </IfModule>
  316. </IfModule>
  317.  
  318. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  319. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  320. # the user's .htaccess file. For more information, please read:
  321. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  322. <IfModule include_module>
  323. <Directory "/home/whbooadmin/public_html">
  324. SSILegacyExprParser On
  325. </Directory>
  326. </IfModule>
  327.  
  328. <IfModule suphp_module>
  329. suPHP_UserGroup whbooadmin whbooadmin
  330. </IfModule>
  331. <IfModule !mod_disable_suexec.c>
  332. <IfModule !mod_ruid2.c>
  333. SuexecUserGroup whbooadmin whbooadmin
  334. </IfModule>
  335. </IfModule>
  336. <IfModule ruid2_module>
  337. RMode config
  338. RUidGid whbooadmin whbooadmin
  339. </IfModule>
  340. <IfModule mpm_itk.c>
  341. # For more information on MPM ITK, please read:
  342. # http://mpm-itk.sesse.net/
  343. AssignUserID whbooadmin whbooadmin
  344. </IfModule>
  345.  
  346. <IfModule alias_module>
  347. ScriptAlias /cgi-bin/ /home/whbooadmin/public_html/cgi-bin/
  348. </IfModule>
  349.  
  350. # To customize this VirtualHost use an include file at the following location
  351. # Include "/usr/local/apache/conf/userdata/std/2_4/whbooadmin/whboo.com/*.conf "
  352. </VirtualHost>
  353.  
  354. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  355.  
  356. <VirtualHost 166.62.80.156:80>
  357. ServerName bufferfestival.com
  358. ServerAlias mail.bufferfestival.com www.bufferfestival.com
  359. DocumentRoot /home/bufferfestival/public_html
  360. ServerAdmin webmaster@bufferfestival.com
  361. UseCanonicalName Off
  362. CustomLog /usr/local/apache/domlogs/bufferfestival.com combined
  363. <IfModule log_config_module>
  364. <IfModule logio_module>
  365. CustomLog /usr/local/apache/domlogs/bufferfestival.com-bytes_log "%{%s}t % I .\n%{%s}t %O ."
  366. </IfModule>
  367. </IfModule>
  368. ## User bufferfestival # Needed for Cpanel::ApacheConf
  369. <IfModule userdir_module>
  370. <IfModule !mpm_itk.c>
  371. <IfModule !ruid2_module>
  372. UserDir enabled bufferfestival
  373. </IfModule>
  374. </IfModule>
  375. </IfModule>
  376.  
  377. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  378. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  379. # the user's .htaccess file. For more information, please read:
  380. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  381. <IfModule include_module>
  382. <Directory "/home/bufferfestival/public_html">
  383. SSILegacyExprParser On
  384. </Directory>
  385. </IfModule>
  386.  
  387. <IfModule suphp_module>
  388. suPHP_UserGroup bufferfestival bufferfestival
  389. </IfModule>
  390. <IfModule !mod_disable_suexec.c>
  391. <IfModule !mod_ruid2.c>
  392. SuexecUserGroup bufferfestival bufferfestival
  393. </IfModule>
  394. </IfModule>
  395. <IfModule ruid2_module>
  396. RMode config
  397. RUidGid bufferfestival bufferfestival
  398. </IfModule>
  399. <IfModule mpm_itk.c>
  400. # For more information on MPM ITK, please read:
  401. # http://mpm-itk.sesse.net/
  402. AssignUserID bufferfestival bufferfestival
  403. </IfModule>
  404.  
  405. <IfModule alias_module>
  406. ScriptAlias /cgi-bin/ /home/bufferfestival/public_html/cgi-bin/
  407. </IfModule>
  408.  
  409. # To customize this VirtualHost use an include file at the following location
  410. # Include "/usr/local/apache/conf/userdata/std/2_4/bufferfestival/bufferfestiv al.com/*.conf"
  411. </VirtualHost>
  412.  
  413. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  414.  
  415. <VirtualHost 166.62.80.156:80>
  416. ServerName evenortheast.com
  417. ServerAlias mail.evenortheast.com www.evenortheast.com
  418. DocumentRoot /home/evenortheast/public_html
  419. ServerAdmin webmaster@evenortheast.com
  420. UseCanonicalName Off
  421. CustomLog /usr/local/apache/domlogs/evenortheast.com combined
  422. <IfModule log_config_module>
  423. <IfModule logio_module>
  424. CustomLog /usr/local/apache/domlogs/evenortheast.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  425. </IfModule>
  426. </IfModule>
  427. ## User evenortheast # Needed for Cpanel::ApacheConf
  428. <IfModule userdir_module>
  429. <IfModule !mpm_itk.c>
  430. <IfModule !ruid2_module>
  431. UserDir enabled evenortheast
  432. </IfModule>
  433. </IfModule>
  434. </IfModule>
  435.  
  436. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  437. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  438. # the user's .htaccess file. For more information, please read:
  439. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  440. <IfModule include_module>
  441. <Directory "/home/evenortheast/public_html">
  442. SSILegacyExprParser On
  443. </Directory>
  444. </IfModule>
  445.  
  446. <IfModule suphp_module>
  447. suPHP_UserGroup evenortheast evenortheast
  448. </IfModule>
  449. <IfModule !mod_disable_suexec.c>
  450. <IfModule !mod_ruid2.c>
  451. SuexecUserGroup evenortheast evenortheast
  452. </IfModule>
  453. </IfModule>
  454. <IfModule ruid2_module>
  455. RMode config
  456. RUidGid evenortheast evenortheast
  457. </IfModule>
  458. <IfModule mpm_itk.c>
  459. # For more information on MPM ITK, please read:
  460. # http://mpm-itk.sesse.net/
  461. AssignUserID evenortheast evenortheast
  462. </IfModule>
  463.  
  464. <IfModule alias_module>
  465. ScriptAlias /cgi-bin/ /home/evenortheast/public_html/cgi-bin/
  466. </IfModule>
  467.  
  468. # To customize this VirtualHost use an include file at the following location
  469. # Include "/usr/local/apache/conf/userdata/std/2_4/evenortheast/evenortheast.c om/*.conf"
  470. </VirtualHost>
  471.  
  472. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  473.  
  474. <VirtualHost 166.62.80.156:80>
  475. ServerName evedublin.com
  476. ServerAlias mail.evedublin.com www.evedublin.com
  477. DocumentRoot /home/joey/public_html
  478. ServerAdmin webmaster@evedublin.com
  479. UseCanonicalName Off
  480. CustomLog /usr/local/apache/domlogs/evedublin.com combined
  481. <IfModule log_config_module>
  482. <IfModule logio_module>
  483. CustomLog /usr/local/apache/domlogs/evedublin.com-bytes_log "%{%s}t %I .\n %{%s}t %O ."
  484. </IfModule>
  485. </IfModule>
  486. ## User joey # Needed for Cpanel::ApacheConf
  487. <IfModule userdir_module>
  488. <IfModule !mpm_itk.c>
  489. <IfModule !ruid2_module>
  490. UserDir enabled joey
  491. </IfModule>
  492. </IfModule>
  493. </IfModule>
  494.  
  495. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  496. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  497. # the user's .htaccess file. For more information, please read:
  498. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  499. <IfModule include_module>
  500. <Directory "/home/joey/public_html">
  501. SSILegacyExprParser On
  502. </Directory>
  503. </IfModule>
  504.  
  505. <IfModule suphp_module>
  506. suPHP_UserGroup joey joey
  507. </IfModule>
  508. <IfModule !mod_disable_suexec.c>
  509. <IfModule !mod_ruid2.c>
  510. SuexecUserGroup joey joey
  511. </IfModule>
  512. </IfModule>
  513. <IfModule ruid2_module>
  514. RMode config
  515. RUidGid joey joey
  516. </IfModule>
  517. <IfModule mpm_itk.c>
  518. # For more information on MPM ITK, please read:
  519. # http://mpm-itk.sesse.net/
  520. AssignUserID joey joey
  521. </IfModule>
  522.  
  523. <IfModule alias_module>
  524. ScriptAlias /cgi-bin/ /home/joey/public_html/cgi-bin/
  525. </IfModule>
  526.  
  527. # To customize this VirtualHost use an include file at the following location
  528. # Include "/usr/local/apache/conf/userdata/std/2_4/joey/evedublin.com/*.conf"
  529. </VirtualHost>
  530.  
  531. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  532.  
  533. <VirtualHost 166.62.80.156:80>
  534. ServerName thisallhappened.com
  535. ServerAlias mail.thisallhappened.com www.thisallhappened.com
  536. DocumentRoot /home/thisallhappened/public_html
  537. ServerAdmin webmaster@thisallhappened.com
  538. UseCanonicalName Off
  539. CustomLog /usr/local/apache/domlogs/thisallhappened.com combined
  540. <IfModule log_config_module>
  541. <IfModule logio_module>
  542. CustomLog /usr/local/apache/domlogs/thisallhappened.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  543. </IfModule>
  544. </IfModule>
  545. ## User thisallhappened # Needed for Cpanel::ApacheConf
  546. <IfModule userdir_module>
  547. <IfModule !mpm_itk.c>
  548. <IfModule !ruid2_module>
  549. UserDir enabled thisallhappened
  550. </IfModule>
  551. </IfModule>
  552. </IfModule>
  553.  
  554. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  555. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  556. # the user's .htaccess file. For more information, please read:
  557. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  558. <IfModule include_module>
  559. <Directory "/home/thisallhappened/public_html">
  560. SSILegacyExprParser On
  561. </Directory>
  562. </IfModule>
  563.  
  564. <IfModule suphp_module>
  565. suPHP_UserGroup thisallhappened thisallhappened
  566. </IfModule>
  567. <IfModule !mod_disable_suexec.c>
  568. <IfModule !mod_ruid2.c>
  569. SuexecUserGroup thisallhappened thisallhappened
  570. </IfModule>
  571. </IfModule>
  572. <IfModule ruid2_module>
  573. RMode config
  574. RUidGid thisallhappened thisallhappened
  575. </IfModule>
  576. <IfModule mpm_itk.c>
  577. # For more information on MPM ITK, please read:
  578. # http://mpm-itk.sesse.net/
  579. AssignUserID thisallhappened thisallhappened
  580. </IfModule>
  581.  
  582. <IfModule alias_module>
  583. ScriptAlias /cgi-bin/ /home/thisallhappened/public_html/cgi-bin/
  584. </IfModule>
  585.  
  586. # To customize this VirtualHost use an include file at the following location
  587. # Include "/usr/local/apache/conf/userdata/std/2_4/thisallhappened/thisallhapp ened.com/*.conf"
  588. </VirtualHost>
  589.  
  590. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  591.  
  592. <VirtualHost 166.62.80.156:80>
  593. ServerName thundermistlures.com
  594. ServerAlias mail.thundermistlures.com www.thundermistlures.com
  595. DocumentRoot /home/thundermistlures/public_html
  596. ServerAdmin webmaster@thundermistlures.com
  597. UseCanonicalName Off
  598. CustomLog /usr/local/apache/domlogs/thundermistlures.com combined
  599. <IfModule log_config_module>
  600. <IfModule logio_module>
  601. CustomLog /usr/local/apache/domlogs/thundermistlures.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  602. </IfModule>
  603. </IfModule>
  604. ## User thundermistlures # Needed for Cpanel::ApacheConf
  605. <IfModule userdir_module>
  606. <IfModule !mpm_itk.c>
  607. <IfModule !ruid2_module>
  608. UserDir enabled thundermistlures
  609. </IfModule>
  610. </IfModule>
  611. </IfModule>
  612.  
  613. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  614. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  615. # the user's .htaccess file. For more information, please read:
  616. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  617. <IfModule include_module>
  618. <Directory "/home/thundermistlures/public_html">
  619. SSILegacyExprParser On
  620. </Directory>
  621. </IfModule>
  622.  
  623. <IfModule suphp_module>
  624. suPHP_UserGroup thundermistlures thundermistlures
  625. </IfModule>
  626. <IfModule !mod_disable_suexec.c>
  627. <IfModule !mod_ruid2.c>
  628. SuexecUserGroup thundermistlures thundermistlures
  629. </IfModule>
  630. </IfModule>
  631. <IfModule ruid2_module>
  632. RMode config
  633. RUidGid thundermistlures thundermistlures
  634. </IfModule>
  635. <IfModule mpm_itk.c>
  636. # For more information on MPM ITK, please read:
  637. # http://mpm-itk.sesse.net/
  638. AssignUserID thundermistlures thundermistlures
  639. </IfModule>
  640.  
  641. <IfModule alias_module>
  642. ScriptAlias /cgi-bin/ /home/thundermistlures/public_html/cgi-bin/
  643. </IfModule>
  644.  
  645. # To customize this VirtualHost use an include file at the following location
  646. # Include "/usr/local/apache/conf/userdata/std/2_4/thundermistlures/thundermis tlures.com/*.conf"
  647. </VirtualHost>
  648.  
  649. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  650.  
  651. <VirtualHost 166.62.80.156:80>
  652. ServerName yourpdfcreator.com
  653. ServerAlias mail.yourpdfcreator.com www.yourpdfcreator.com
  654. DocumentRoot /home/yourpdfcreator/public_html
  655. ServerAdmin webmaster@yourpdfcreator.com
  656. UseCanonicalName Off
  657. CustomLog /usr/local/apache/domlogs/yourpdfcreator.com combined
  658. <IfModule log_config_module>
  659. <IfModule logio_module>
  660. CustomLog /usr/local/apache/domlogs/yourpdfcreator.com-bytes_log "%{%s}t % I .\n%{%s}t %O ."
  661. </IfModule>
  662. </IfModule>
  663. ## User yourpdfcreator # Needed for Cpanel::ApacheConf
  664. <IfModule userdir_module>
  665. <IfModule !mpm_itk.c>
  666. <IfModule !ruid2_module>
  667. UserDir enabled yourpdfcreator
  668. </IfModule>
  669. </IfModule>
  670. </IfModule>
  671.  
  672. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  673. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  674. # the user's .htaccess file. For more information, please read:
  675. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  676. <IfModule include_module>
  677. <Directory "/home/yourpdfcreator/public_html">
  678. SSILegacyExprParser On
  679. </Directory>
  680. </IfModule>
  681.  
  682. <IfModule suphp_module>
  683. suPHP_UserGroup yourpdfcreator yourpdfcreator
  684. </IfModule>
  685. <IfModule !mod_disable_suexec.c>
  686. <IfModule !mod_ruid2.c>
  687. SuexecUserGroup yourpdfcreator yourpdfcreator
  688. </IfModule>
  689. </IfModule>
  690. <IfModule ruid2_module>
  691. RMode config
  692. RUidGid yourpdfcreator yourpdfcreator
  693. </IfModule>
  694. <IfModule mpm_itk.c>
  695. # For more information on MPM ITK, please read:
  696. # http://mpm-itk.sesse.net/
  697. AssignUserID yourpdfcreator yourpdfcreator
  698. </IfModule>
  699.  
  700. <IfModule alias_module>
  701. ScriptAlias /cgi-bin/ /home/yourpdfcreator/public_html/cgi-bin/
  702. </IfModule>
  703.  
  704. # To customize this VirtualHost use an include file at the following location
  705. # Include "/usr/local/apache/conf/userdata/std/2_4/yourpdfcreator/yourpdfcreat or.com/*.conf"
  706. </VirtualHost>
  707.  
  708. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  709.  
  710. <VirtualHost 166.62.80.156:80>
  711. ServerName beta.bufferfestival.com
  712. ServerAlias www.beta.bufferfestival.com
  713. DocumentRoot /home/bufferfestival/public_html/beta
  714. ServerAdmin webmaster@beta.bufferfestival.com
  715. UseCanonicalName Off
  716. CustomLog /usr/local/apache/domlogs/beta.bufferfestival.com combined
  717. <IfModule log_config_module>
  718. <IfModule logio_module>
  719. CustomLog /usr/local/apache/domlogs/beta.bufferfestival.com-bytes_log "%{% s}t %I .\n%{%s}t %O ."
  720. </IfModule>
  721. </IfModule>
  722. ## User bufferfestival # Needed for Cpanel::ApacheConf
  723. <IfModule userdir_module>
  724. <IfModule !mpm_itk.c>
  725. <IfModule !ruid2_module>
  726. UserDir enabled bufferfestival
  727. </IfModule>
  728. </IfModule>
  729. </IfModule>
  730.  
  731. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  732. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  733. # the user's .htaccess file. For more information, please read:
  734. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  735. <IfModule include_module>
  736. <Directory "/home/bufferfestival/public_html/beta">
  737. SSILegacyExprParser On
  738. </Directory>
  739. </IfModule>
  740.  
  741. <IfModule suphp_module>
  742. suPHP_UserGroup bufferfestival bufferfestival
  743. </IfModule>
  744. <IfModule !mod_disable_suexec.c>
  745. <IfModule !mod_ruid2.c>
  746. SuexecUserGroup bufferfestival bufferfestival
  747. </IfModule>
  748. </IfModule>
  749. <IfModule ruid2_module>
  750. RMode config
  751. RUidGid bufferfestival bufferfestival
  752. </IfModule>
  753. <IfModule mpm_itk.c>
  754. # For more information on MPM ITK, please read:
  755. # http://mpm-itk.sesse.net/
  756. AssignUserID bufferfestival bufferfestival
  757. </IfModule>
  758.  
  759. <IfModule alias_module>
  760. ScriptAlias /cgi-bin/ /home/bufferfestival/public_html/beta/cgi-bin/
  761. </IfModule>
  762.  
  763. # To customize this VirtualHost use an include file at the following location
  764. # Include "/usr/local/apache/conf/userdata/std/2_4/bufferfestival/beta.bufferf estival.com/*.conf"
  765. </VirtualHost>
  766.  
  767. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  768.  
  769. <VirtualHost 166.62.80.156:80>
  770. ServerName forums.evedublin.com
  771. ServerAlias www.forums.evedublin.com
  772. DocumentRoot /home/joey/forums.evedublin.com
  773. ServerAdmin webmaster@forums.evedublin.com
  774. UseCanonicalName Off
  775. CustomLog /usr/local/apache/domlogs/forums.evedublin.com combined
  776. <IfModule log_config_module>
  777. <IfModule logio_module>
  778. CustomLog /usr/local/apache/domlogs/forums.evedublin.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  779. </IfModule>
  780. </IfModule>
  781. ## User joey # Needed for Cpanel::ApacheConf
  782. <IfModule userdir_module>
  783. <IfModule !mpm_itk.c>
  784. <IfModule !ruid2_module>
  785. UserDir enabled joey
  786. </IfModule>
  787. </IfModule>
  788. </IfModule>
  789.  
  790. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  791. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  792. # the user's .htaccess file. For more information, please read:
  793. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  794. <IfModule include_module>
  795. <Directory "/home/joey/forums.evedublin.com">
  796. SSILegacyExprParser On
  797. </Directory>
  798. </IfModule>
  799.  
  800. <IfModule suphp_module>
  801. suPHP_UserGroup joey joey
  802. </IfModule>
  803. <IfModule !mod_disable_suexec.c>
  804. <IfModule !mod_ruid2.c>
  805. SuexecUserGroup joey joey
  806. </IfModule>
  807. </IfModule>
  808. <IfModule ruid2_module>
  809. RMode config
  810. RUidGid joey joey
  811. </IfModule>
  812. <IfModule mpm_itk.c>
  813. # For more information on MPM ITK, please read:
  814. # http://mpm-itk.sesse.net/
  815. AssignUserID joey joey
  816. </IfModule>
  817.  
  818. <IfModule alias_module>
  819. ScriptAlias /cgi-bin/ /home/joey/forums.evedublin.com/cgi-bin/
  820. </IfModule>
  821.  
  822. # To customize this VirtualHost use an include file at the following location
  823. # Include "/usr/local/apache/conf/userdata/std/2_4/joey/forums.evedublin.com/* .conf"
  824. </VirtualHost>
  825.  
  826. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  827.  
  828. <VirtualHost 166.62.80.156:80>
  829. ServerName beta.whboo.com
  830. ServerAlias www.beta.whboo.com
  831. DocumentRoot /home/whbooadmin/beta.whboo.com
  832. ServerAdmin webmaster@beta.whboo.com
  833. UseCanonicalName Off
  834. CustomLog /usr/local/apache/domlogs/beta.whboo.com combined
  835. <IfModule log_config_module>
  836. <IfModule logio_module>
  837. CustomLog /usr/local/apache/domlogs/beta.whboo.com-bytes_log "%{%s}t %I .\ n%{%s}t %O ."
  838. </IfModule>
  839. </IfModule>
  840. ## User whbooadmin # Needed for Cpanel::ApacheConf
  841. <IfModule userdir_module>
  842. <IfModule !mpm_itk.c>
  843. <IfModule !ruid2_module>
  844. UserDir enabled whbooadmin
  845. </IfModule>
  846. </IfModule>
  847. </IfModule>
  848.  
  849. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  850. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  851. # the user's .htaccess file. For more information, please read:
  852. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  853. <IfModule include_module>
  854. <Directory "/home/whbooadmin/beta.whboo.com">
  855. SSILegacyExprParser On
  856. </Directory>
  857. </IfModule>
  858.  
  859. <IfModule suphp_module>
  860. suPHP_UserGroup whbooadmin whbooadmin
  861. </IfModule>
  862. <IfModule !mod_disable_suexec.c>
  863. <IfModule !mod_ruid2.c>
  864. SuexecUserGroup whbooadmin whbooadmin
  865. </IfModule>
  866. </IfModule>
  867. <IfModule ruid2_module>
  868. RMode config
  869. RUidGid whbooadmin whbooadmin
  870. </IfModule>
  871. <IfModule mpm_itk.c>
  872. # For more information on MPM ITK, please read:
  873. # http://mpm-itk.sesse.net/
  874. AssignUserID whbooadmin whbooadmin
  875. </IfModule>
  876.  
  877. <IfModule alias_module>
  878. ScriptAlias /cgi-bin/ /home/whbooadmin/beta.whboo.com/cgi-bin/
  879. </IfModule>
  880.  
  881. # To customize this VirtualHost use an include file at the following location
  882. # Include "/usr/local/apache/conf/userdata/std/2_4/whbooadmin/beta.whboo.com/* .conf"
  883. </VirtualHost>
  884.  
  885. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  886.  
  887. # SSL
  888. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  889.  
  890. <VirtualHost 166.62.80.156:443>
  891. ServerName evedublin.com
  892. ServerAlias mail.evedublin.com www.evedublin.com cpanel.evedublin.com webmail. evedublin.com webdisk.evedublin.com
  893. DocumentRoot /home/joey/public_html
  894. ServerAdmin webmaster@evedublin.com
  895. UseCanonicalName Off
  896. CustomLog /usr/local/apache/domlogs/evedublin.com-ssl_log combined
  897. <IfModule log_config_module>
  898. <IfModule logio_module>
  899. CustomLog /usr/local/apache/domlogs/evedublin.com-bytes_log "%{%s}t %I .\n %{%s}t %O ."
  900. </IfModule>
  901. </IfModule>
  902. ## User joey # Needed for Cpanel::ApacheConf
  903. <IfModule userdir_module>
  904. <IfModule !mpm_itk.c>
  905. <IfModule !ruid2_module>
  906. UserDir enabled joey
  907. </IfModule>
  908. </IfModule>
  909. </IfModule>
  910.  
  911. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  912. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  913. # the user's .htaccess file. For more information, please read:
  914. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  915. <IfModule include_module>
  916. <Directory "/home/joey/public_html">
  917. SSILegacyExprParser On
  918. </Directory>
  919. </IfModule>
  920.  
  921. <IfModule suphp_module>
  922. suPHP_UserGroup joey joey
  923. </IfModule>
  924. <IfModule !mod_disable_suexec.c>
  925. <IfModule !ruid2_module>
  926. SuexecUserGroup joey joey
  927. </IfModule>
  928. </IfModule>
  929. <IfModule ruid2_module>
  930. RMode config
  931. RUidGid joey joey
  932. </IfModule>
  933. <IfModule mpm_itk.c>
  934. # For more information on MPM ITK, please read:
  935. # http://mpm-itk.sesse.net/
  936. AssignUserID joey joey
  937. </IfModule>
  938.  
  939. <IfModule alias_module>
  940. ScriptAlias /cgi-bin/ /home/joey/public_html/cgi-bin/
  941. </IfModule>
  942. <IfModule ssl_module>
  943. SSLEngine on
  944.  
  945. SSLCertificateFile /var/cpanel/ssl/apache_tls/evedublin.com/combined
  946.  
  947. SSLUseStapling off
  948. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  949. <Directory "/home/joey/public_html/cgi-bin">
  950. SSLOptions +StdEnvVars
  951. </Directory>
  952. </IfModule>
  953.  
  954. # To customize this VirtualHost use an include file at the following location
  955. # Include "/usr/local/apache/conf/userdata/ssl/2_4/joey/evedublin.com/*.conf"
  956.  
  957. <IfModule headers_module>
  958. RequestHeader set X-HTTPS 1
  959. </IfModule>
  960.  
  961. RewriteEngine On
  962. RewriteCond %{HTTP_HOST} =cpanel.evedublin.com [OR]
  963. RewriteCond %{HTTP_HOST} =cpanel.evedublin.com:443
  964.  
  965. RewriteRule ^/(.*) /___proxy_subdomain_cpanel/$1 [PT]
  966. ProxyPass "/___proxy_subdomain_cpanel" "http://127.0.0.1:2082" m ax=1 retry=0
  967. RewriteCond %{HTTP_HOST} =webdisk.evedublin.com [OR]
  968. RewriteCond %{HTTP_HOST} =webdisk.evedublin.com:443
  969.  
  970. RewriteRule ^/(.*) /___proxy_subdomain_webdisk/$1 [PT]
  971. ProxyPass "/___proxy_subdomain_webdisk" "http://127.0.0.1:2077" max=1 retry=0
  972. RewriteCond %{HTTP_HOST} =webmail.evedublin.com [OR]
  973. RewriteCond %{HTTP_HOST} =webmail.evedublin.com:443
  974.  
  975. RewriteRule ^/(.*) /___proxy_subdomain_webmail/$1 [PT]
  976. ProxyPass "/___proxy_subdomain_webmail" "http://127.0.0.1:2095" max=1 retry=0
  977. </VirtualHost>
  978.  
  979. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  980.  
  981. <VirtualHost 166.62.80.156:443>
  982. ServerName evenortheast.com
  983. ServerAlias mail.evenortheast.com www.evenortheast.com cpanel.evenortheast.com webmail.evenortheast.com webdisk.evenortheast.com
  984. DocumentRoot /home/evenortheast/public_html
  985. ServerAdmin webmaster@evenortheast.com
  986. UseCanonicalName Off
  987. CustomLog /usr/local/apache/domlogs/evenortheast.com-ssl_log combined
  988. <IfModule log_config_module>
  989. <IfModule logio_module>
  990. CustomLog /usr/local/apache/domlogs/evenortheast.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  991. </IfModule>
  992. </IfModule>
  993. ## User evenortheast # Needed for Cpanel::ApacheConf
  994. <IfModule userdir_module>
  995. <IfModule !mpm_itk.c>
  996. <IfModule !ruid2_module>
  997. UserDir enabled evenortheast
  998. </IfModule>
  999. </IfModule>
  1000. </IfModule>
  1001.  
  1002. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  1003. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  1004. # the user's .htaccess file. For more information, please read:
  1005. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  1006. <IfModule include_module>
  1007. <Directory "/home/evenortheast/public_html">
  1008. SSILegacyExprParser On
  1009. </Directory>
  1010. </IfModule>
  1011.  
  1012. <IfModule suphp_module>
  1013. suPHP_UserGroup evenortheast evenortheast
  1014. </IfModule>
  1015. <IfModule !mod_disable_suexec.c>
  1016. <IfModule !ruid2_module>
  1017. SuexecUserGroup evenortheast evenortheast
  1018. </IfModule>
  1019. </IfModule>
  1020. <IfModule ruid2_module>
  1021. RMode config
  1022. RUidGid evenortheast evenortheast
  1023. </IfModule>
  1024. <IfModule mpm_itk.c>
  1025. # For more information on MPM ITK, please read:
  1026. # http://mpm-itk.sesse.net/
  1027. AssignUserID evenortheast evenortheast
  1028. </IfModule>
  1029.  
  1030. <IfModule alias_module>
  1031. ScriptAlias /cgi-bin/ /home/evenortheast/public_html/cgi-bin/
  1032. </IfModule>
  1033. <IfModule ssl_module>
  1034. SSLEngine on
  1035.  
  1036. SSLCertificateFile /var/cpanel/ssl/apache_tls/evenortheast.com/combined
  1037.  
  1038. SSLUseStapling off
  1039. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  1040. <Directory "/home/evenortheast/public_html/cgi-bin">
  1041. SSLOptions +StdEnvVars
  1042. </Directory>
  1043. </IfModule>
  1044.  
  1045. # To customize this VirtualHost use an include file at the following location
  1046. # Include "/usr/local/apache/conf/userdata/ssl/2_4/evenortheast/evenortheast.c om/*.conf"
  1047.  
  1048. <IfModule headers_module>
  1049. RequestHeader set X-HTTPS 1
  1050. </IfModule>
  1051.  
  1052. RewriteEngine On
  1053. RewriteCond %{HTTP_HOST} =cpanel.evenortheast.com [OR]
  1054. RewriteCond %{HTTP_HOST} =cpanel.evenortheast.com:443
  1055.  
  1056. RewriteRule ^/(.*) /___proxy_subdomain_cpanel/$1 [PT]
  1057. ProxyPass "/___proxy_subdomain_cpanel" "http://127.0.0.1:2082" m ax=1 retry=0
  1058. RewriteCond %{HTTP_HOST} =webdisk.evenortheast.com [OR]
  1059. RewriteCond %{HTTP_HOST} =webdisk.evenortheast.com:443
  1060.  
  1061. RewriteRule ^/(.*) /___proxy_subdomain_webdisk/$1 [PT]
  1062. ProxyPass "/___proxy_subdomain_webdisk" "http://127.0.0.1:2077" max=1 retry=0
  1063. RewriteCond %{HTTP_HOST} =webmail.evenortheast.com [OR]
  1064. RewriteCond %{HTTP_HOST} =webmail.evenortheast.com:443
  1065.  
  1066. RewriteRule ^/(.*) /___proxy_subdomain_webmail/$1 [PT]
  1067. ProxyPass "/___proxy_subdomain_webmail" "http://127.0.0.1:2095" max=1 retry=0
  1068. </VirtualHost>
  1069.  
  1070. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1071.  
  1072. <VirtualHost 166.62.80.156:443>
  1073. ServerName thisallhappened.com
  1074. ServerAlias mail.thisallhappened.com www.thisallhappened.com webdisk.thisallha ppened.com webmail.thisallhappened.com cpanel.thisallhappened.com
  1075. DocumentRoot /home/thisallhappened/public_html
  1076. ServerAdmin webmaster@thisallhappened.com
  1077. UseCanonicalName Off
  1078. CustomLog /usr/local/apache/domlogs/thisallhappened.com-ssl_log combined
  1079. <IfModule log_config_module>
  1080. <IfModule logio_module>
  1081. CustomLog /usr/local/apache/domlogs/thisallhappened.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1082. </IfModule>
  1083. </IfModule>
  1084. ## User thisallhappened # Needed for Cpanel::ApacheConf
  1085. <IfModule userdir_module>
  1086. <IfModule !mpm_itk.c>
  1087. <IfModule !ruid2_module>
  1088. UserDir enabled thisallhappened
  1089. </IfModule>
  1090. </IfModule>
  1091. </IfModule>
  1092.  
  1093. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  1094. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  1095. # the user's .htaccess file. For more information, please read:
  1096. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  1097. <IfModule include_module>
  1098. <Directory "/home/thisallhappened/public_html">
  1099. SSILegacyExprParser On
  1100. </Directory>
  1101. </IfModule>
  1102.  
  1103. <IfModule suphp_module>
  1104. suPHP_UserGroup thisallhappened thisallhappened
  1105. </IfModule>
  1106. <IfModule !mod_disable_suexec.c>
  1107. <IfModule !ruid2_module>
  1108. SuexecUserGroup thisallhappened thisallhappened
  1109. </IfModule>
  1110. </IfModule>
  1111. <IfModule ruid2_module>
  1112. RMode config
  1113. RUidGid thisallhappened thisallhappened
  1114. </IfModule>
  1115. <IfModule mpm_itk.c>
  1116. # For more information on MPM ITK, please read:
  1117. # http://mpm-itk.sesse.net/
  1118. AssignUserID thisallhappened thisallhappened
  1119. </IfModule>
  1120.  
  1121. <IfModule alias_module>
  1122. ScriptAlias /cgi-bin/ /home/thisallhappened/public_html/cgi-bin/
  1123. </IfModule>
  1124. <IfModule ssl_module>
  1125. SSLEngine on
  1126.  
  1127. SSLCertificateFile /var/cpanel/ssl/apache_tls/thisallhappened.com/combined
  1128.  
  1129. SSLUseStapling off
  1130. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  1131. <Directory "/home/thisallhappened/public_html/cgi-bin">
  1132. SSLOptions +StdEnvVars
  1133. </Directory>
  1134. </IfModule>
  1135.  
  1136. # To customize this VirtualHost use an include file at the following location
  1137. # Include "/usr/local/apache/conf/userdata/ssl/2_4/thisallhappened/thisallhapp ened.com/*.conf"
  1138.  
  1139. <IfModule headers_module>
  1140. RequestHeader set X-HTTPS 1
  1141. </IfModule>
  1142.  
  1143. RewriteEngine On
  1144. RewriteCond %{HTTP_HOST} =cpanel.thisallhappened.com [OR]
  1145. RewriteCond %{HTTP_HOST} =cpanel.thisallhappened.com:443
  1146.  
  1147. RewriteRule ^/(.*) /___proxy_subdomain_cpanel/$1 [PT]
  1148. ProxyPass "/___proxy_subdomain_cpanel" "http://127.0.0.1:2082" m ax=1 retry=0
  1149. RewriteCond %{HTTP_HOST} =webdisk.thisallhappened.com [OR]
  1150. RewriteCond %{HTTP_HOST} =webdisk.thisallhappened.com:443
  1151.  
  1152. RewriteRule ^/(.*) /___proxy_subdomain_webdisk/$1 [PT]
  1153. ProxyPass "/___proxy_subdomain_webdisk" "http://127.0.0.1:2077" max=1 retry=0
  1154. RewriteCond %{HTTP_HOST} =webmail.thisallhappened.com [OR]
  1155. RewriteCond %{HTTP_HOST} =webmail.thisallhappened.com:443
  1156.  
  1157. RewriteRule ^/(.*) /___proxy_subdomain_webmail/$1 [PT]
  1158. ProxyPass "/___proxy_subdomain_webmail" "http://127.0.0.1:2095" max=1 retry=0
  1159. </VirtualHost>
  1160.  
  1161. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1162.  
  1163. <VirtualHost 166.62.80.156:443>
  1164. ServerName whboo.com
  1165. ServerAlias mail.whboo.com www.whboo.com webdisk.whboo.com webmail.whboo.com c panel.whboo.com
  1166. DocumentRoot /home/whbooadmin/public_html
  1167. ServerAdmin webmaster@whboo.com
  1168. UseCanonicalName Off
  1169. CustomLog /usr/local/apache/domlogs/whboo.com-ssl_log combined
  1170. <IfModule log_config_module>
  1171. <IfModule logio_module>
  1172. CustomLog /usr/local/apache/domlogs/whboo.com-bytes_log "%{%s}t %I .\n%{%s }t %O ."
  1173. </IfModule>
  1174. </IfModule>
  1175. ## User whbooadmin # Needed for Cpanel::ApacheConf
  1176. <IfModule userdir_module>
  1177. <IfModule !mpm_itk.c>
  1178. <IfModule !ruid2_module>
  1179. UserDir enabled whbooadmin
  1180. </IfModule>
  1181. </IfModule>
  1182. </IfModule>
  1183.  
  1184. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  1185. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  1186. # the user's .htaccess file. For more information, please read:
  1187. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  1188. <IfModule include_module>
  1189. <Directory "/home/whbooadmin/public_html">
  1190. SSILegacyExprParser On
  1191. </Directory>
  1192. </IfModule>
  1193.  
  1194. <IfModule suphp_module>
  1195. suPHP_UserGroup whbooadmin whbooadmin
  1196. </IfModule>
  1197. <IfModule !mod_disable_suexec.c>
  1198. <IfModule !ruid2_module>
  1199. SuexecUserGroup whbooadmin whbooadmin
  1200. </IfModule>
  1201. </IfModule>
  1202. <IfModule ruid2_module>
  1203. RMode config
  1204. RUidGid whbooadmin whbooadmin
  1205. </IfModule>
  1206. <IfModule mpm_itk.c>
  1207. # For more information on MPM ITK, please read:
  1208. # http://mpm-itk.sesse.net/
  1209. AssignUserID whbooadmin whbooadmin
  1210. </IfModule>
  1211.  
  1212. <IfModule alias_module>
  1213. ScriptAlias /cgi-bin/ /home/whbooadmin/public_html/cgi-bin/
  1214. </IfModule>
  1215. <IfModule ssl_module>
  1216. SSLEngine on
  1217.  
  1218. SSLCertificateFile /var/cpanel/ssl/apache_tls/whboo.com/combined
  1219.  
  1220. SSLUseStapling off
  1221. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  1222. <Directory "/home/whbooadmin/public_html/cgi-bin">
  1223. SSLOptions +StdEnvVars
  1224. </Directory>
  1225. </IfModule>
  1226.  
  1227. # To customize this VirtualHost use an include file at the following location
  1228. # Include "/usr/local/apache/conf/userdata/ssl/2_4/whbooadmin/whboo.com/*.conf "
  1229.  
  1230. <IfModule headers_module>
  1231. RequestHeader set X-HTTPS 1
  1232. </IfModule>
  1233.  
  1234. RewriteEngine On
  1235. RewriteCond %{HTTP_HOST} =cpanel.whboo.com [OR]
  1236. RewriteCond %{HTTP_HOST} =cpanel.whboo.com:443
  1237.  
  1238. RewriteRule ^/(.*) /___proxy_subdomain_cpanel/$1 [PT]
  1239. ProxyPass "/___proxy_subdomain_cpanel" "http://127.0.0.1:2082" m ax=1 retry=0
  1240. RewriteCond %{HTTP_HOST} =webdisk.whboo.com [OR]
  1241. RewriteCond %{HTTP_HOST} =webdisk.whboo.com:443
  1242.  
  1243. RewriteRule ^/(.*) /___proxy_subdomain_webdisk/$1 [PT]
  1244. ProxyPass "/___proxy_subdomain_webdisk" "http://127.0.0.1:2077" max=1 retry=0
  1245. RewriteCond %{HTTP_HOST} =webmail.whboo.com [OR]
  1246. RewriteCond %{HTTP_HOST} =webmail.whboo.com:443
  1247.  
  1248. RewriteRule ^/(.*) /___proxy_subdomain_webmail/$1 [PT]
  1249. ProxyPass "/___proxy_subdomain_webmail" "http://127.0.0.1:2095" max=1 retry=0
  1250. </VirtualHost>
  1251.  
  1252. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1253.  
  1254. <VirtualHost 166.62.80.156:443>
  1255. ServerName yourpdfcreator.com
  1256. ServerAlias mail.yourpdfcreator.com www.yourpdfcreator.com webdisk.yourpdfcrea tor.com webmail.yourpdfcreator.com cpanel.yourpdfcreator.com
  1257. DocumentRoot /home/yourpdfcreator/public_html
  1258. ServerAdmin webmaster@yourpdfcreator.com
  1259. UseCanonicalName Off
  1260. CustomLog /usr/local/apache/domlogs/yourpdfcreator.com-ssl_log combined
  1261. <IfModule log_config_module>
  1262. <IfModule logio_module>
  1263. CustomLog /usr/local/apache/domlogs/yourpdfcreator.com-bytes_log "%{%s}t % I .\n%{%s}t %O ."
  1264. </IfModule>
  1265. </IfModule>
  1266. ## User yourpdfcreator # Needed for Cpanel::ApacheConf
  1267. <IfModule userdir_module>
  1268. <IfModule !mpm_itk.c>
  1269. <IfModule !ruid2_module>
  1270. UserDir enabled yourpdfcreator
  1271. </IfModule>
  1272. </IfModule>
  1273. </IfModule>
  1274.  
  1275. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  1276. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  1277. # the user's .htaccess file. For more information, please read:
  1278. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  1279. <IfModule include_module>
  1280. <Directory "/home/yourpdfcreator/public_html">
  1281. SSILegacyExprParser On
  1282. </Directory>
  1283. </IfModule>
  1284.  
  1285. <IfModule suphp_module>
  1286. suPHP_UserGroup yourpdfcreator yourpdfcreator
  1287. </IfModule>
  1288. <IfModule !mod_disable_suexec.c>
  1289. <IfModule !ruid2_module>
  1290. SuexecUserGroup yourpdfcreator yourpdfcreator
  1291. </IfModule>
  1292. </IfModule>
  1293. <IfModule ruid2_module>
  1294. RMode config
  1295. RUidGid yourpdfcreator yourpdfcreator
  1296. </IfModule>
  1297. <IfModule mpm_itk.c>
  1298. # For more information on MPM ITK, please read:
  1299. # http://mpm-itk.sesse.net/
  1300. AssignUserID yourpdfcreator yourpdfcreator
  1301. </IfModule>
  1302.  
  1303. <IfModule alias_module>
  1304. ScriptAlias /cgi-bin/ /home/yourpdfcreator/public_html/cgi-bin/
  1305. </IfModule>
  1306. <IfModule ssl_module>
  1307. SSLEngine on
  1308.  
  1309. SSLCertificateFile /var/cpanel/ssl/apache_tls/yourpdfcreator.com/combined
  1310.  
  1311. SSLUseStapling off
  1312. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  1313. <Directory "/home/yourpdfcreator/public_html/cgi-bin">
  1314. SSLOptions +StdEnvVars
  1315. </Directory>
  1316. </IfModule>
  1317.  
  1318. # To customize this VirtualHost use an include file at the following location
  1319. # Include "/usr/local/apache/conf/userdata/ssl/2_4/yourpdfcreator/yourpdfcreat or.com/*.conf"
  1320.  
  1321. <IfModule headers_module>
  1322. RequestHeader set X-HTTPS 1
  1323. </IfModule>
  1324.  
  1325. RewriteEngine On
  1326. RewriteCond %{HTTP_HOST} =cpanel.yourpdfcreator.com [OR]
  1327. RewriteCond %{HTTP_HOST} =cpanel.yourpdfcreator.com:443
  1328.  
  1329. RewriteRule ^/(.*) /___proxy_subdomain_cpanel/$1 [PT]
  1330. ProxyPass "/___proxy_subdomain_cpanel" "http://127.0.0.1:2082" m ax=1 retry=0
  1331. RewriteCond %{HTTP_HOST} =webdisk.yourpdfcreator.com [OR]
  1332. RewriteCond %{HTTP_HOST} =webdisk.yourpdfcreator.com:443
  1333.  
  1334. RewriteRule ^/(.*) /___proxy_subdomain_webdisk/$1 [PT]
  1335. ProxyPass "/___proxy_subdomain_webdisk" "http://127.0.0.1:2077" max=1 retry=0
  1336. RewriteCond %{HTTP_HOST} =webmail.yourpdfcreator.com [OR]
  1337. RewriteCond %{HTTP_HOST} =webmail.yourpdfcreator.com:443
  1338.  
  1339. RewriteRule ^/(.*) /___proxy_subdomain_webmail/$1 [PT]
  1340. ProxyPass "/___proxy_subdomain_webmail" "http://127.0.0.1:2095" max=1 retry=0
  1341. </VirtualHost>
  1342.  
  1343. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1344.  
  1345. <VirtualHost 166.62.80.156:443>
  1346. ServerName forums.evedublin.com
  1347. ServerAlias www.forums.evedublin.com
  1348. DocumentRoot /home/joey/forums.evedublin.com
  1349. ServerAdmin webmaster@forums.evedublin.com
  1350. UseCanonicalName Off
  1351. CustomLog /usr/local/apache/domlogs/forums.evedublin.com-ssl_log combined
  1352. <IfModule log_config_module>
  1353. <IfModule logio_module>
  1354. CustomLog /usr/local/apache/domlogs/forums.evedublin.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1355. </IfModule>
  1356. </IfModule>
  1357. ## User joey # Needed for Cpanel::ApacheConf
  1358. <IfModule userdir_module>
  1359. <IfModule !mpm_itk.c>
  1360. <IfModule !ruid2_module>
  1361. UserDir enabled joey
  1362. </IfModule>
  1363. </IfModule>
  1364. </IfModule>
  1365.  
  1366. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  1367. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  1368. # the user's .htaccess file. For more information, please read:
  1369. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  1370. <IfModule include_module>
  1371. <Directory "/home/joey/forums.evedublin.com">
  1372. SSILegacyExprParser On
  1373. </Directory>
  1374. </IfModule>
  1375.  
  1376. <IfModule suphp_module>
  1377. suPHP_UserGroup joey joey
  1378. </IfModule>
  1379. <IfModule !mod_disable_suexec.c>
  1380. <IfModule !ruid2_module>
  1381. SuexecUserGroup joey joey
  1382. </IfModule>
  1383. </IfModule>
  1384. <IfModule ruid2_module>
  1385. RMode config
  1386. RUidGid joey joey
  1387. </IfModule>
  1388. <IfModule mpm_itk.c>
  1389. # For more information on MPM ITK, please read:
  1390. # http://mpm-itk.sesse.net/
  1391. AssignUserID joey joey
  1392. </IfModule>
  1393.  
  1394. <IfModule alias_module>
  1395. ScriptAlias /cgi-bin/ /home/joey/forums.evedublin.com/cgi-bin/
  1396. </IfModule>
  1397. <IfModule ssl_module>
  1398. SSLEngine on
  1399.  
  1400. SSLCertificateFile /var/cpanel/ssl/apache_tls/forums.evedublin.com/combined
  1401.  
  1402. SSLUseStapling off
  1403. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  1404. <Directory "/home/joey/forums.evedublin.com/cgi-bin">
  1405. SSLOptions +StdEnvVars
  1406. </Directory>
  1407. </IfModule>
  1408.  
  1409. # To customize this VirtualHost use an include file at the following location
  1410. # Include "/usr/local/apache/conf/userdata/ssl/2_4/joey/forums.evedublin.com/* .conf"
  1411.  
  1412. </VirtualHost>
  1413.  
  1414. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1415.  
  1416. <VirtualHost 166.62.80.156:443>
  1417. ServerName beta.whboo.com
  1418. ServerAlias www.beta.whboo.com
  1419. DocumentRoot /home/whbooadmin/beta.whboo.com
  1420. ServerAdmin webmaster@beta.whboo.com
  1421. UseCanonicalName Off
  1422. CustomLog /usr/local/apache/domlogs/beta.whboo.com-ssl_log combined
  1423. <IfModule log_config_module>
  1424. <IfModule logio_module>
  1425. CustomLog /usr/local/apache/domlogs/beta.whboo.com-bytes_log "%{%s}t %I .\ n%{%s}t %O ."
  1426. </IfModule>
  1427. </IfModule>
  1428. ## User whbooadmin # Needed for Cpanel::ApacheConf
  1429. <IfModule userdir_module>
  1430. <IfModule !mpm_itk.c>
  1431. <IfModule !ruid2_module>
  1432. UserDir enabled whbooadmin
  1433. </IfModule>
  1434. </IfModule>
  1435. </IfModule>
  1436.  
  1437. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  1438. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacy ExprParser in
  1439. # the user's .htaccess file. For more information, please read:
  1440. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  1441. <IfModule include_module>
  1442. <Directory "/home/whbooadmin/beta.whboo.com">
  1443. SSILegacyExprParser On
  1444. </Directory>
  1445. </IfModule>
  1446.  
  1447. <IfModule suphp_module>
  1448. suPHP_UserGroup whbooadmin whbooadmin
  1449. </IfModule>
  1450. <IfModule !mod_disable_suexec.c>
  1451. <IfModule !ruid2_module>
  1452. SuexecUserGroup whbooadmin whbooadmin
  1453. </IfModule>
  1454. </IfModule>
  1455. <IfModule ruid2_module>
  1456. RMode config
  1457. RUidGid whbooadmin whbooadmin
  1458. </IfModule>
  1459. <IfModule mpm_itk.c>
  1460. # For more information on MPM ITK, please read:
  1461. # http://mpm-itk.sesse.net/
  1462. AssignUserID whbooadmin whbooadmin
  1463. </IfModule>
  1464.  
  1465. <IfModule alias_module>
  1466. ScriptAlias /cgi-bin/ /home/whbooadmin/beta.whboo.com/cgi-bin/
  1467. </IfModule>
  1468. <IfModule ssl_module>
  1469. SSLEngine on
  1470.  
  1471. SSLCertificateFile /var/cpanel/ssl/apache_tls/beta.whboo.com/combined
  1472.  
  1473. SSLUseStapling off
  1474. SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  1475. <Directory "/home/whbooadmin/beta.whboo.com/cgi-bin">
  1476. SSLOptions +StdEnvVars
  1477. </Directory>
  1478. </IfModule>
  1479.  
  1480. # To customize this VirtualHost use an include file at the following location
  1481. # Include "/usr/local/apache/conf/userdata/ssl/2_4/whbooadmin/beta.whboo.com/* .conf"
  1482.  
  1483. </VirtualHost>
  1484.  
  1485.  
  1486.  
  1487.  
  1488.  
  1489.  
  1490. # CPANEL/WHM/WEBMAIL/WEBDISK PROXY SUBDOMAINS
  1491.  
  1492. <VirtualHost 166.62.80.156:80 127.0.0.1:80>
  1493. ServerName proxy-subdomains-vhost.localhost
  1494.  
  1495. ServerAlias cpanel.* whm.* webmail.* webdisk.* cpcalendars.* cpcontacts.*
  1496.  
  1497. DocumentRoot /usr/local/apache/htdocs
  1498. ServerAdmin info@s166-62-80-156.secureserver.net
  1499. <IfModule mod_suphp.c>
  1500. suPHP_UserGroup nobody nobody
  1501. </IfModule>
  1502. <Proxy "*">
  1503. <IfModule mod_security2.c>
  1504. SecRuleEngine Off
  1505. </IfModule>
  1506. </Proxy>
  1507. RewriteEngine On
  1508.  
  1509. ScriptAlias /.cpanel/dcv /usr/local/cpanel/cgi-priv/get_local.cgi
  1510. RewriteCond %{REQUEST_URI} ^/\.well-known/cpanel-dcv/[0-9a-zA-Z_-]+$ [OR]
  1511. RewriteCond %{REQUEST_URI} ^/\.well-known/pki-validation/[A-F0-9]{32 }\.txt(?:\ Comodo\ DCV)?$
  1512. RewriteRule ^ /.cpanel/dcv [PT]
  1513.  
  1514. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1515. RewriteCond %{HTTP_HOST} ^cpanel.
  1516. RewriteRule ^/(.*) /___proxy_subdomain_cpanel/$1 [PT]
  1517. ProxyPass "/___proxy_subdomain_cpanel" "http://127.0.0.1:2082" max=1 retry=0
  1518.  
  1519. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1520. RewriteCond %{HTTP_HOST} ^webmail.
  1521. RewriteRule ^/(.*) /___proxy_subdomain_webmail/$1 [PT]
  1522. ProxyPass "/___proxy_subdomain_webmail" "http://127.0.0.1:2095" max=1 retry= 0
  1523.  
  1524. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1525. RewriteCond %{HTTP_HOST} ^whm.
  1526. RewriteRule ^/(.*) /___proxy_subdomain_whm/$1 [PT]
  1527. ProxyPass "/___proxy_subdomain_whm" "http://127.0.0.1:2086" max=1 retry=0
  1528.  
  1529. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1530. RewriteCond %{HTTP_HOST} ^webdisk.
  1531. RewriteRule ^/(.*) /___proxy_subdomain_webdisk/$1 [PT]
  1532. ProxyPass "/___proxy_subdomain_webdisk" "http://127.0.0.1:2077" max=1 retry= 0
  1533.  
  1534. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1535. RewriteCond %{HTTP_HOST} ^cpcalendars.
  1536. RewriteRule ^/(.*) /___proxy_subdomain_cpcalendars/$1 [PT]
  1537. ProxyPass "/___proxy_subdomain_cpcalendars" "http://127.0.0.1:2079" max=1 re try=0
  1538.  
  1539. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1540. RewriteCond %{HTTP_HOST} ^cpcontacts.
  1541. RewriteRule ^/(.*) /___proxy_subdomain_cpcontacts/$1 [PT]
  1542. ProxyPass "/___proxy_subdomain_cpcontacts" "http://127.0.0.1:2079" max=1 ret ry=0
  1543.  
  1544. UseCanonicalName Off
  1545. </VirtualHost>
  1546.  
  1547.  
  1548.  
  1549.  
  1550.  
  1551.  
  1552. # CPANEL/WHM/WEBMAIL/WEBDISK PROXY SUBDOMAINS
  1553.  
  1554. <VirtualHost 166.62.80.156:443 127.0.0.1:443>
  1555. ServerName proxy-subdomains-ssl-default-vhost.localhost
  1556.  
  1557. ServerAlias cpanel.* whm.* webmail.* webdisk.* cpcalendars.* cpcontacts.*
  1558.  
  1559. DocumentRoot /usr/local/apache/htdocs
  1560. ServerAdmin info@s166-62-80-156.secureserver.net
  1561. <IfModule mod_suphp.c>
  1562. suPHP_UserGroup nobody nobody
  1563. </IfModule>
  1564. <Proxy "*">
  1565. <IfModule mod_security2.c>
  1566. SecRuleEngine Off
  1567. </IfModule>
  1568. </Proxy>
  1569. RewriteEngine On
  1570. <IfModule mod_ssl.c>
  1571. SSLEngine on
  1572. SSLCertificateFile /var/cpanel/ssl/cpanel/cpanel.pem
  1573. SSLCertificateKeyFile /var/cpanel/ssl/cpanel/cpanel.pem
  1574. SSLCertificateChainFile /var/cpanel/ssl/cpanel/cpanel.pem
  1575. SSLUseStapling Off
  1576.  
  1577. </IfModule>
  1578.  
  1579. <IfModule mod_headers.c>
  1580. RequestHeader set X-HTTPS 1
  1581. </IfModule>
  1582.  
  1583. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1584. RewriteCond %{HTTP_HOST} ^cpanel.
  1585. RewriteRule ^/(.*) /___proxy_subdomain_cpanel/$1 [PT]
  1586. ProxyPass "/___proxy_subdomain_cpanel" "http://127.0.0.1:2082" max=1 retry=0
  1587.  
  1588. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1589. RewriteCond %{HTTP_HOST} ^webmail.
  1590. RewriteRule ^/(.*) /___proxy_subdomain_webmail/$1 [PT]
  1591. ProxyPass "/___proxy_subdomain_webmail" "http://127.0.0.1:2095" max=1 retry= 0
  1592.  
  1593. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1594. RewriteCond %{HTTP_HOST} ^whm.
  1595. RewriteRule ^/(.*) /___proxy_subdomain_whm/$1 [PT]
  1596. ProxyPass "/___proxy_subdomain_whm" "http://127.0.0.1:2086" max=1 retry=0
  1597.  
  1598. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1599. RewriteCond %{HTTP_HOST} ^webdisk.
  1600. RewriteRule ^/(.*) /___proxy_subdomain_webdisk/$1 [PT]
  1601. ProxyPass "/___proxy_subdomain_webdisk" "http://127.0.0.1:2077" max=1 retry= 0
  1602.  
  1603. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1604. RewriteCond %{HTTP_HOST} ^cpcalendars.
  1605. RewriteRule ^/(.*) /___proxy_subdomain_cpcalendars/$1 [PT]
  1606. ProxyPass "/___proxy_subdomain_cpcalendars" "http://127.0.0.1:2079" max=1 re try=0
  1607.  
  1608. RewriteCond %{HTTP_HOST} !^s166-62-80-156.secureserver.net$
  1609. RewriteCond %{HTTP_HOST} ^cpcontacts.
  1610. RewriteRule ^/(.*) /___proxy_subdomain_cpcalendars/$1 [PT]
  1611. ProxyPass "/___proxy_subdomain_cpcalendars" "http://127.0.0.1:2079" max=1 re try=0
  1612.  
  1613. UseCanonicalName Off
  1614. </VirtualHost>
  1615.  
  1616.  
  1617.  
  1618. Include "/usr/local/apache/conf/includes/post_virtualhost_global.conf"
  1619. Include "/usr/local/apache/conf/includes/post_virtualhost_2.conf"
  1620.  
  1621.  
  1622. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1623. <VirtualHost 166.62.80.156:443 *:443>
  1624. ServerName s166-62-80-156.secureserver.net
  1625. DocumentRoot /usr/local/apache/htdocs
  1626.  
  1627. ServerAdmin info@s166-62-80-156.secureserver.net
  1628. <IfModule suphp_module>
  1629. suPHP_UserGroup nobody nobody
  1630. </IfModule>
  1631. <Directory "/">
  1632. AllowOverride All
  1633. </Directory>
  1634. <IfModule ssl_module>
  1635. SSLEngine on
  1636. SSLCertificateFile /var/cpanel/ssl/cpanel/cpanel.pem
  1637. SSLCertificateKeyFile /var/cpanel/ssl/cpanel/cpanel.pem
  1638. SSLCertificateChainFile /var/cpanel/ssl/cpanel/cpanel.pem
  1639. SSLUseStapling Off
  1640. </IfModule>
  1641.  
  1642. UseCanonicalName Off
  1643.  
  1644. <IfModule security2_module>
  1645. SecRuleEngine On
  1646. </IfModule>
  1647. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement