Advertisement
Guest User

Untitled

a guest
Mar 13th, 2013
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 98.24 KB | None | 0 0
  1. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  2. # Direct modifications to the Apache configuration file may be lost upon subsequent regeneration of the #
  3. # configuration file. To have modifications retained, all modifications must be 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 configuration 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_distiller with the new configuration #
  13. # system refer to the documentation at: http://www.cpanel.net/support/docs/ea/ea3/customdirectives.html #
  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 the '.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. LoadModule ruid2_module modules/mod_ruid2.so
  35.  
  36.  
  37.  
  38.  
  39. Include "/usr/local/apache/conf/php.conf"
  40. Include "/usr/local/apache/conf/mod_ruid2.conf"
  41. Include "/usr/local/apache/conf/includes/errordocument.conf"
  42. Include "/usr/local/apache/conf/modsec2.conf"
  43.  
  44.  
  45. ErrorLog "logs/error_log"
  46. DefaultType text/plain
  47. ScriptAliasMatch ^/?controlpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi
  48. ScriptAliasMatch ^/?cpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi
  49. ScriptAliasMatch ^/?kpanel/?$ /usr/local/cpanel/cgi-sys/redirect.cgi
  50. ScriptAliasMatch ^/?securecontrolpanel/?$ /usr/local/cpanel/cgi-sys/sredirect.cgi
  51. ScriptAliasMatch ^/?securecpanel/?$ /usr/local/cpanel/cgi-sys/sredirect.cgi
  52. ScriptAliasMatch ^/?securewhm/?$ /usr/local/cpanel/cgi-sys/swhmredirect.cgi
  53. ScriptAliasMatch ^/?webmail/?$ /usr/local/cpanel/cgi-sys/wredirect.cgi
  54. ScriptAliasMatch ^/?whm/?$ /usr/local/cpanel/cgi-sys/whmredirect.cgi
  55.  
  56. RewriteEngine on
  57. AddType text/html .shtml
  58.  
  59. Alias /akopia /usr/local/cpanel/3rdparty/interchange/share/akopia/
  60. Alias /bandwidth /usr/local/bandmin/htdocs/
  61. Alias /img-sys /usr/local/cpanel/img-sys/
  62. Alias /interchange /usr/local/cpanel/3rdparty/interchange/share/interchange/
  63. Alias /interchange-5 /usr/local/cpanel/3rdparty/interchange/share/interchange-5/
  64. Alias /java-sys /usr/local/cpanel/java-sys/
  65. Alias /mailman/archives /usr/local/cpanel/3rdparty/mailman/archives/public/
  66. Alias /pipermail /usr/local/cpanel/3rdparty/mailman/archives/public/
  67. Alias /sys_cpanel /usr/local/cpanel/sys_cpanel/
  68.  
  69.  
  70. ScriptAlias /cgi-sys /usr/local/cpanel/cgi-sys/
  71. ScriptAlias /mailman /usr/local/cpanel/3rdparty/mailman/cgi-bin/
  72.  
  73.  
  74. <Directory "/">
  75. Options ExecCGI FollowSymLinks IncludesNOEXEC Indexes SymLinksIfOwnerMatch
  76. AllowOverride All
  77. </Directory>
  78.  
  79. <Directory "/usr/local/apache/htdocs">
  80. Options Includes Indexes FollowSymLinks
  81. AllowOverride None
  82. Order allow,deny
  83. Allow from all
  84.  
  85. </Directory>
  86.  
  87. <Files ~ "^error_log$">
  88. Order allow,deny
  89. Deny from all
  90.  
  91. Satisfy All
  92. </Files>
  93.  
  94. <FilesMatch "^\.ht">
  95. Order allow,deny
  96. Deny from all
  97.  
  98. Satisfy All
  99. </FilesMatch>
  100.  
  101. <IfModule log_config_module>
  102. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  103. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  104.  
  105. CustomLog "logs/access_log" common
  106.  
  107. <IfModule logio_module>
  108. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
  109.  
  110. </IfModule>
  111.  
  112. </IfModule>
  113.  
  114. <IfModule alias_module>
  115. ScriptAlias /cgi-bin/ "/usr/local/apache/cgi-bin/"
  116.  
  117. </IfModule>
  118.  
  119. <Directory "/usr/local/apache/cgi-bin">
  120. AllowOverride None
  121. Options None
  122. Order allow,deny
  123. Allow from all
  124.  
  125. </Directory>
  126.  
  127. <IfModule mod_log_config.c>
  128. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
  129. LogFormat "%h %l %u %t \"%r\" %>s %b" common
  130. LogFormat "%{Referer}i -> %U" referer
  131. LogFormat "%{User-agent}i" agent
  132.  
  133. CustomLog logs/access_log common
  134.  
  135. </IfModule>
  136.  
  137. <IfModule mime_module>
  138. TypesConfig conf/mime.types
  139. AddType application/x-compress .Z
  140. AddType application/x-gzip .gz .tgz
  141.  
  142. </IfModule>
  143.  
  144. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  145. # Direct modifications to the Apache configuration file may be lost upon subsequent regeneration of the #
  146. # configuration file. To have modifications retained, all modifications must be checked into the #
  147. # configuration system by running: #
  148. # /usr/local/cpanel/bin/apache_conf_distiller --update #
  149. # To see if your changes will be conserved, regenerate the Apache configuration file by running: #
  150. # /usr/local/cpanel/bin/build_apache_conf #
  151. # and check the configuration file for your alterations. If your changes have been ignored, then they will #
  152. # need to be added directly to their respective template files. #
  153. # #
  154. # It is also possible to add custom directives to the various "Include" files loaded by this httpd.conf #
  155. # For detailed instructions on using Include files and the apache_conf_distiller with the new configuration #
  156. # system refer to the documentation at: http://www.cpanel.net/support/docs/ea/ea3/customdirectives.html #
  157. # #
  158. # This configuration file was built from the following templates: #
  159. # /var/cpanel/templates/apache2/main.default #
  160. # /var/cpanel/templates/apache2/main.local #
  161. # /var/cpanel/templates/apache2/vhost.default #
  162. # /var/cpanel/templates/apache2/vhost.local #
  163. # /var/cpanel/templates/apache2/ssl_vhost.default #
  164. # /var/cpanel/templates/apache2/ssl_vhost.local #
  165. # #
  166. # Templates with the '.local' extension will be preferred over templates with the '.default' extension. #
  167. # The only template updated by the apache_conf_distiller is main.default. #
  168. # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
  169.  
  170.  
  171. PidFile logs/httpd.pid
  172. LockFile logs/accept.lock
  173. # Defined in /var/cpanel/cpanel.config: apache_port
  174. Listen 0.0.0.0:80
  175. User nobody
  176. Group nobody
  177. ExtendedStatus On
  178. ServerAdmin sdsanders@gmail.com
  179. ServerName server.webdesign309.com
  180. LogLevel warn
  181.  
  182. # These can be set in WHM under 'Apache Global Configuration'
  183. Timeout 120
  184. TraceEnable Off
  185. ServerSignature Off
  186. ServerTokens ProductOnly
  187. FileETag None
  188. StartServers 3
  189. <IfModule prefork.c>
  190. MinSpareServers 2
  191. MaxSpareServers 5
  192. </IfModule>
  193. ServerLimit 256
  194. MaxClients 15
  195. MaxRequestsPerChild 200
  196. KeepAlive On
  197. KeepAliveTimeout 2
  198. MaxKeepAliveRequests 100
  199.  
  200. RewriteEngine on
  201. RewriteMap LeechProtect prg:/usr/local/cpanel/bin/leechprotect
  202. RewriteLock /usr/local/apache/logs/rewrite_lock
  203.  
  204. <IfModule !mod_ruid2.c>
  205. UserDir public_html
  206. </IfModule>
  207. <IfModule mod_ruid2.c>
  208. UserDir disabled
  209. </IfModule>
  210.  
  211. # DirectoryIndex is set via the WHM -> Service Configuration -> Apache Setup -> DirectoryIndex Priority
  212. 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
  213.  
  214. # SSLCipherSuite can be set in WHM under 'Apache Global Configuration'
  215. SSLCipherSuite ECDHE-RSA-AES128-SHA256:AES128-GCM-SHA256:RC4:HIGH:!MD5:!aNULL:!EDH
  216. SSLPassPhraseDialog builtin
  217. SSLSessionCache dbm:/usr/local/apache/logs/ssl_scache
  218. SSLSessionCacheTimeout 300
  219. SSLMutex file:/usr/local/apache/logs/ssl_mutex
  220. SSLRandomSeed startup builtin
  221. SSLRandomSeed connect builtin
  222.  
  223. # Defined in /var/cpanel/cpanel.config: apache_ssl_port
  224. Listen 0.0.0.0:443
  225. AddType application/x-x509-ca-cert .crt
  226. AddType application/x-pkcs7-crl .crl
  227.  
  228.  
  229. AddHandler cgi-script .cgi .pl .plx .ppl .perl
  230. AddHandler server-parsed .shtml
  231. AddType text/html .shtml
  232. AddType application/x-tar .tgz
  233. AddType text/vnd.wap.wml .wml
  234. AddType image/vnd.wap.wbmp .wbmp
  235. AddType text/vnd.wap.wmlscript .wmls
  236. AddType application/vnd.wap.wmlc .wmlc
  237. AddType application/vnd.wap.wmlscriptc .wmlsc
  238.  
  239. <Location /whm-server-status>
  240. SetHandler server-status
  241. Order deny,allow
  242. Deny from all
  243. Allow from 127.0.0.1
  244. </Location>
  245.  
  246.  
  247.  
  248. # SUEXEC is supported
  249.  
  250. Include "/usr/local/apache/conf/includes/pre_virtualhost_global.conf"
  251. Include "/usr/local/apache/conf/includes/pre_virtualhost_2.conf"
  252.  
  253. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  254. NameVirtualHost 108.165.22.184:80
  255. NameVirtualHost 127.0.0.1:80
  256. NameVirtualHost *
  257. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  258.  
  259. <VirtualHost 108.165.22.184:80>
  260. ServerName server.webdesign309.com
  261. DocumentRoot /usr/local/apache/htdocs
  262. ServerAdmin sdsanders@gmail.com
  263. </VirtualHost>
  264.  
  265.  
  266. # Default vhost for unbound IPs
  267.  
  268. <VirtualHost *>
  269. ServerName server.webdesign309.com
  270. DocumentRoot /usr/local/apache/htdocs
  271. ServerAdmin sdsanders@gmail.com
  272. </VirtualHost>
  273.  
  274. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  275.  
  276. <VirtualHost 108.165.22.184:80>
  277. ServerName apexroofs.net
  278. ServerAlias www.apexroofs.net
  279. DocumentRoot /home/apexroof/public_html
  280. ServerAdmin webmaster@apexroofs.net
  281. UseCanonicalName Off
  282. CustomLog /usr/local/apache/domlogs/apexroofs.net combined
  283. CustomLog /usr/local/apache/domlogs/apexroofs.net-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  284. ## User apexroof # Needed for Cpanel::ApacheConf
  285. UserDir enabled apexroof
  286. <IfModule !mod_disable_suexec.c>
  287. <IfModule !mod_ruid2.c>
  288. SuexecUserGroup apexroof apexroof
  289. </IfModule>
  290. </IfModule>
  291. <IfModule mod_ruid2.c>
  292. RUidGid apexroof apexroof
  293. </IfModule>
  294. ScriptAlias /cgi-bin/ /home/apexroof/public_html/cgi-bin/
  295.  
  296. Include "/usr/local/apache/conf/userdata/std/2/apexroof/*.conf"
  297.  
  298. </VirtualHost>
  299.  
  300. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  301.  
  302. <VirtualHost 108.165.22.184:80>
  303. ServerName bigdogtreestands.com
  304. ServerAlias www.bigdogtreestands.com
  305. DocumentRoot /home/bigdogtr/public_html
  306. ServerAdmin webmaster@bigdogtreestands.com
  307. UseCanonicalName Off
  308. CustomLog /usr/local/apache/domlogs/bigdogtreestands.com combined
  309. CustomLog /usr/local/apache/domlogs/bigdogtreestands.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  310. ## User bigdogtr # Needed for Cpanel::ApacheConf
  311. UserDir enabled bigdogtr
  312. <IfModule !mod_disable_suexec.c>
  313. <IfModule !mod_ruid2.c>
  314. SuexecUserGroup bigdogtr bigdogtr
  315. </IfModule>
  316. </IfModule>
  317. <IfModule mod_ruid2.c>
  318. RUidGid bigdogtr bigdogtr
  319. </IfModule>
  320. ScriptAlias /cgi-bin/ /home/bigdogtr/public_html/cgi-bin/
  321.  
  322. Include "/usr/local/apache/conf/userdata/std/2/bigdogtr/*.conf"
  323.  
  324. </VirtualHost>
  325.  
  326. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  327.  
  328. <VirtualHost 108.165.22.184:80>
  329. ServerName bluechipbath.com
  330. ServerAlias www.bluechipbath.com
  331. DocumentRoot /home/bluechip/public_html
  332. ServerAdmin webmaster@bluechipbath.com
  333. UseCanonicalName Off
  334. CustomLog /usr/local/apache/domlogs/bluechipbath.com combined
  335. CustomLog /usr/local/apache/domlogs/bluechipbath.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  336. ## User bluechip # Needed for Cpanel::ApacheConf
  337. UserDir enabled bluechip
  338. <IfModule !mod_disable_suexec.c>
  339. <IfModule !mod_ruid2.c>
  340. SuexecUserGroup bluechip bluechip
  341. </IfModule>
  342. </IfModule>
  343. <IfModule mod_ruid2.c>
  344. RUidGid bluechip bluechip
  345. </IfModule>
  346. ScriptAlias /cgi-bin/ /home/bluechip/public_html/cgi-bin/
  347.  
  348. Include "/usr/local/apache/conf/userdata/std/2/bluechip/*.conf"
  349.  
  350. </VirtualHost>
  351.  
  352. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  353.  
  354. <VirtualHost 108.165.22.184:80>
  355. ServerName evenglowlodge.org
  356. ServerAlias www.evenglowlodge.org
  357. DocumentRoot /home/evenglow/public_html
  358. ServerAdmin webmaster@evenglowlodge.org
  359. UseCanonicalName Off
  360. CustomLog /usr/local/apache/domlogs/evenglowlodge.org combined
  361. CustomLog /usr/local/apache/domlogs/evenglowlodge.org-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  362. ## User evenglow # Needed for Cpanel::ApacheConf
  363. UserDir enabled evenglow
  364. <IfModule !mod_disable_suexec.c>
  365. <IfModule !mod_ruid2.c>
  366. SuexecUserGroup evenglow evenglow
  367. </IfModule>
  368. </IfModule>
  369. <IfModule mod_ruid2.c>
  370. RUidGid evenglow evenglow
  371. </IfModule>
  372. ScriptAlias /cgi-bin/ /home/evenglow/public_html/cgi-bin/
  373.  
  374. Include "/usr/local/apache/conf/userdata/std/2/evenglow/*.conf"
  375.  
  376. </VirtualHost>
  377.  
  378. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  379.  
  380. <VirtualHost 108.165.22.184:80>
  381. ServerName hiddentreasures110.com
  382. ServerAlias www.hiddentreasures110.com
  383. DocumentRoot /home/hiddentr/public_html
  384. ServerAdmin webmaster@hiddentreasures110.com
  385. UseCanonicalName Off
  386. CustomLog /usr/local/apache/domlogs/hiddentreasures110.com combined
  387. CustomLog /usr/local/apache/domlogs/hiddentreasures110.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  388. ## User hiddentr # Needed for Cpanel::ApacheConf
  389. UserDir enabled hiddentr
  390. <IfModule !mod_disable_suexec.c>
  391. <IfModule !mod_ruid2.c>
  392. SuexecUserGroup hiddentr hiddentr
  393. </IfModule>
  394. </IfModule>
  395. <IfModule mod_ruid2.c>
  396. RUidGid hiddentr hiddentr
  397. </IfModule>
  398. ScriptAlias /cgi-bin/ /home/hiddentr/public_html/cgi-bin/
  399.  
  400. Include "/usr/local/apache/conf/userdata/std/2/hiddentr/*.conf"
  401.  
  402. </VirtualHost>
  403.  
  404. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  405.  
  406. <VirtualHost 108.165.22.184:80>
  407. ServerName lifelinesacademy.com
  408. ServerAlias www.lifelinesacademy.com
  409. DocumentRoot /home/lifeline/public_html
  410. ServerAdmin webmaster@lifelinesacademy.com
  411. UseCanonicalName Off
  412. CustomLog /usr/local/apache/domlogs/lifelinesacademy.com combined
  413. CustomLog /usr/local/apache/domlogs/lifelinesacademy.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  414. ## User lifeline # Needed for Cpanel::ApacheConf
  415. UserDir enabled lifeline
  416. <IfModule !mod_disable_suexec.c>
  417. <IfModule !mod_ruid2.c>
  418. SuexecUserGroup lifeline lifeline
  419. </IfModule>
  420. </IfModule>
  421. <IfModule mod_ruid2.c>
  422. RUidGid lifeline lifeline
  423. </IfModule>
  424. ScriptAlias /cgi-bin/ /home/lifeline/public_html/cgi-bin/
  425.  
  426. Include "/usr/local/apache/conf/userdata/std/2/lifeline/*.conf"
  427.  
  428. </VirtualHost>
  429.  
  430. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  431.  
  432. <VirtualHost 108.165.22.184:80>
  433. ServerName mthawleycc.com
  434. ServerAlias www.mthawleycc.com
  435. DocumentRoot /home/mthawley/public_html
  436. ServerAdmin webmaster@mthawleycc.com
  437. UseCanonicalName Off
  438. CustomLog /usr/local/apache/domlogs/mthawleycc.com combined
  439. CustomLog /usr/local/apache/domlogs/mthawleycc.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  440. ## User mthawley # Needed for Cpanel::ApacheConf
  441. UserDir enabled mthawley
  442. <IfModule !mod_disable_suexec.c>
  443. <IfModule !mod_ruid2.c>
  444. SuexecUserGroup mthawley mthawley
  445. </IfModule>
  446. </IfModule>
  447. <IfModule mod_ruid2.c>
  448. RUidGid mthawley mthawley
  449. </IfModule>
  450. ScriptAlias /cgi-bin/ /home/mthawley/public_html/cgi-bin/
  451.  
  452. Include "/usr/local/apache/conf/userdata/std/2/mthawley/*.conf"
  453.  
  454. </VirtualHost>
  455.  
  456. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  457.  
  458. <VirtualHost 108.165.22.184:80>
  459. ServerName peorialuxuryhomes.com
  460. ServerAlias www.peorialuxuryhomes.com
  461. DocumentRoot /home/peorialu/public_html
  462. ServerAdmin webmaster@peorialuxuryhomes.com
  463. UseCanonicalName Off
  464. CustomLog /usr/local/apache/domlogs/peorialuxuryhomes.com combined
  465. CustomLog /usr/local/apache/domlogs/peorialuxuryhomes.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  466. ## User peorialu # Needed for Cpanel::ApacheConf
  467. UserDir enabled peorialu
  468. <IfModule !mod_disable_suexec.c>
  469. <IfModule !mod_ruid2.c>
  470. SuexecUserGroup peorialu peorialu
  471. </IfModule>
  472. </IfModule>
  473. <IfModule mod_ruid2.c>
  474. RUidGid peorialu peorialu
  475. </IfModule>
  476. ScriptAlias /cgi-bin/ /home/peorialu/public_html/cgi-bin/
  477.  
  478. Include "/usr/local/apache/conf/userdata/std/2/peorialu/*.conf"
  479.  
  480. </VirtualHost>
  481.  
  482. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  483.  
  484. <VirtualHost 108.165.22.184:80>
  485. ServerName peoriarescue.org
  486. ServerAlias www.peoriarescue.org
  487. DocumentRoot /home/peoriare/public_html
  488. ServerAdmin webmaster@peoriarescue.org
  489. UseCanonicalName Off
  490. CustomLog /usr/local/apache/domlogs/peoriarescue.org combined
  491. CustomLog /usr/local/apache/domlogs/peoriarescue.org-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  492. ## User peoriare # Needed for Cpanel::ApacheConf
  493. UserDir enabled peoriare
  494. <IfModule !mod_disable_suexec.c>
  495. <IfModule !mod_ruid2.c>
  496. SuexecUserGroup peoriare peoriare
  497. </IfModule>
  498. </IfModule>
  499. <IfModule mod_ruid2.c>
  500. RUidGid peoriare peoriare
  501. </IfModule>
  502. ScriptAlias /cgi-bin/ /home/peoriare/public_html/cgi-bin/
  503.  
  504. Include "/usr/local/apache/conf/userdata/std/2/peoriare/*.conf"
  505.  
  506. </VirtualHost>
  507.  
  508. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  509.  
  510. <VirtualHost 108.165.22.184:80>
  511. ServerName qdobapeoria.com
  512. ServerAlias www.qdobapeoria.com
  513. DocumentRoot /home/qdobapeo/public_html
  514. ServerAdmin webmaster@qdobapeoria.com
  515. UseCanonicalName Off
  516. CustomLog /usr/local/apache/domlogs/qdobapeoria.com combined
  517. CustomLog /usr/local/apache/domlogs/qdobapeoria.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  518. ## User qdobapeo # Needed for Cpanel::ApacheConf
  519. UserDir enabled qdobapeo
  520. <IfModule !mod_disable_suexec.c>
  521. <IfModule !mod_ruid2.c>
  522. SuexecUserGroup qdobapeo qdobapeo
  523. </IfModule>
  524. </IfModule>
  525. <IfModule mod_ruid2.c>
  526. RUidGid qdobapeo qdobapeo
  527. </IfModule>
  528. ScriptAlias /cgi-bin/ /home/qdobapeo/public_html/cgi-bin/
  529.  
  530. Include "/usr/local/apache/conf/userdata/std/2/qdobapeo/*.conf"
  531.  
  532. </VirtualHost>
  533.  
  534. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  535.  
  536. <VirtualHost 108.165.22.184:80>
  537. ServerName webdesign309.com
  538. ServerAlias www.webdesign309.com
  539. DocumentRoot /home/webdesi2/public_html
  540. ServerAdmin webmaster@webdesign309.com
  541. UseCanonicalName Off
  542. CustomLog /usr/local/apache/domlogs/webdesign309.com combined
  543. CustomLog /usr/local/apache/domlogs/webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  544. ## User webdesi2 # Needed for Cpanel::ApacheConf
  545. UserDir enabled webdesi2
  546. <IfModule !mod_disable_suexec.c>
  547. <IfModule !mod_ruid2.c>
  548. SuexecUserGroup webdesi2 webdesi2
  549. </IfModule>
  550. </IfModule>
  551. <IfModule mod_ruid2.c>
  552. RUidGid webdesi2 webdesi2
  553. </IfModule>
  554. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/cgi-bin/
  555.  
  556. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  557.  
  558. </VirtualHost>
  559.  
  560. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  561.  
  562. <VirtualHost 108.165.22.184:80>
  563. ServerName westutter.org
  564. ServerAlias www.westutter.org
  565. DocumentRoot /home/westutte/public_html
  566. ServerAdmin webmaster@westutter.org
  567. UseCanonicalName Off
  568. CustomLog /usr/local/apache/domlogs/westutter.org combined
  569. CustomLog /usr/local/apache/domlogs/westutter.org-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  570. ## User westutte # Needed for Cpanel::ApacheConf
  571. UserDir enabled westutte
  572. <IfModule !mod_disable_suexec.c>
  573. <IfModule !mod_ruid2.c>
  574. SuexecUserGroup westutte westutte
  575. </IfModule>
  576. </IfModule>
  577. <IfModule mod_ruid2.c>
  578. RUidGid westutte westutte
  579. </IfModule>
  580. ScriptAlias /cgi-bin/ /home/westutte/public_html/cgi-bin/
  581.  
  582. Include "/usr/local/apache/conf/userdata/std/2/westutte/*.conf"
  583.  
  584. </VirtualHost>
  585.  
  586. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  587.  
  588. <VirtualHost 108.165.22.184:80>
  589. ServerName cater.qdobapeoria.com
  590. ServerAlias www.cater.qdobapeoria.com
  591. DocumentRoot /home/qdobapeo/public_html
  592. ServerAdmin webmaster@cater.qdobapeoria.com
  593. UseCanonicalName Off
  594. CustomLog /usr/local/apache/domlogs/cater.qdobapeoria.com combined
  595. CustomLog /usr/local/apache/domlogs/cater.qdobapeoria.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  596. ## User qdobapeo # Needed for Cpanel::ApacheConf
  597. UserDir enabled qdobapeo
  598. <IfModule !mod_disable_suexec.c>
  599. <IfModule !mod_ruid2.c>
  600. SuexecUserGroup qdobapeo qdobapeo
  601. </IfModule>
  602. </IfModule>
  603. <IfModule mod_ruid2.c>
  604. RUidGid qdobapeo qdobapeo
  605. </IfModule>
  606. ScriptAlias /cgi-bin/ /home/qdobapeo/public_html/cgi-bin/
  607.  
  608. Include "/usr/local/apache/conf/userdata/std/2/qdobapeo/*.conf"
  609.  
  610. </VirtualHost>
  611.  
  612. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  613.  
  614. <VirtualHost 108.165.22.184:80>
  615. ServerName qdobaeastpeoria.qdobapeoria.com
  616. ServerAlias qdobaeastpeoria.com www.qdobaeastpeoria.qdobapeoria.com www.qdobaeastpeoria.com
  617. DocumentRoot /home/qdobapeo/public_html
  618. ServerAdmin webmaster@qdobaeastpeoria.qdobapeoria.com
  619. UseCanonicalName Off
  620. CustomLog /usr/local/apache/domlogs/qdobaeastpeoria.qdobapeoria.com combined
  621. CustomLog /usr/local/apache/domlogs/qdobaeastpeoria.qdobapeoria.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  622. ## User qdobapeo # Needed for Cpanel::ApacheConf
  623. UserDir enabled qdobapeo
  624. <IfModule !mod_disable_suexec.c>
  625. <IfModule !mod_ruid2.c>
  626. SuexecUserGroup qdobapeo qdobapeo
  627. </IfModule>
  628. </IfModule>
  629. <IfModule mod_ruid2.c>
  630. RUidGid qdobapeo qdobapeo
  631. </IfModule>
  632. ScriptAlias /cgi-bin/ /home/qdobapeo/public_html/cgi-bin/
  633.  
  634. Include "/usr/local/apache/conf/userdata/std/2/qdobapeo/*.conf"
  635.  
  636. </VirtualHost>
  637.  
  638. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  639.  
  640. <VirtualHost 108.165.22.184:80>
  641. ServerName qdobamoline.qdobapeoria.com
  642. ServerAlias www.qdobamoline.com qdobamoline.com www.qdobamoline.qdobapeoria.com
  643. DocumentRoot /home/qdobapeo/public_html
  644. ServerAdmin webmaster@qdobamoline.qdobapeoria.com
  645. UseCanonicalName Off
  646. CustomLog /usr/local/apache/domlogs/qdobamoline.qdobapeoria.com combined
  647. CustomLog /usr/local/apache/domlogs/qdobamoline.qdobapeoria.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  648. ## User qdobapeo # Needed for Cpanel::ApacheConf
  649. UserDir enabled qdobapeo
  650. <IfModule !mod_disable_suexec.c>
  651. <IfModule !mod_ruid2.c>
  652. SuexecUserGroup qdobapeo qdobapeo
  653. </IfModule>
  654. </IfModule>
  655. <IfModule mod_ruid2.c>
  656. RUidGid qdobapeo qdobapeo
  657. </IfModule>
  658. ScriptAlias /cgi-bin/ /home/qdobapeo/public_html/cgi-bin/
  659.  
  660. Include "/usr/local/apache/conf/userdata/std/2/qdobapeo/*.conf"
  661.  
  662. </VirtualHost>
  663.  
  664. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  665.  
  666. <VirtualHost 108.165.22.184:80>
  667. ServerName qdobaspringfield.qdobapeoria.com
  668. ServerAlias www.qdobaspringfield.qdobapeoria.com qdobaspringfield.com www.qdobaspringfield.com
  669. DocumentRoot /home/qdobapeo/public_html
  670. ServerAdmin webmaster@qdobaspringfield.qdobapeoria.com
  671. UseCanonicalName Off
  672. CustomLog /usr/local/apache/domlogs/qdobaspringfield.qdobapeoria.com combined
  673. CustomLog /usr/local/apache/domlogs/qdobaspringfield.qdobapeoria.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  674. ## User qdobapeo # Needed for Cpanel::ApacheConf
  675. UserDir enabled qdobapeo
  676. <IfModule !mod_disable_suexec.c>
  677. <IfModule !mod_ruid2.c>
  678. SuexecUserGroup qdobapeo qdobapeo
  679. </IfModule>
  680. </IfModule>
  681. <IfModule mod_ruid2.c>
  682. RUidGid qdobapeo qdobapeo
  683. </IfModule>
  684. ScriptAlias /cgi-bin/ /home/qdobapeo/public_html/cgi-bin/
  685.  
  686. Include "/usr/local/apache/conf/userdata/std/2/qdobapeo/*.conf"
  687.  
  688. </VirtualHost>
  689.  
  690. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  691.  
  692. <VirtualHost 108.165.22.184:80>
  693. ServerName 309marketing.webdesign309.com
  694. ServerAlias www.309marketing.com www.309marketing.webdesign309.com 309marketing.com
  695. DocumentRoot /home/webdesi2/public_html/hosted/309marketing.com
  696. ServerAdmin webmaster@309marketing.webdesign309.com
  697. UseCanonicalName Off
  698. CustomLog /usr/local/apache/domlogs/309marketing.webdesign309.com combined
  699. CustomLog /usr/local/apache/domlogs/309marketing.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  700. ## User webdesi2 # Needed for Cpanel::ApacheConf
  701. UserDir enabled webdesi2
  702. <IfModule !mod_disable_suexec.c>
  703. <IfModule !mod_ruid2.c>
  704. SuexecUserGroup webdesi2 webdesi2
  705. </IfModule>
  706. </IfModule>
  707. <IfModule mod_ruid2.c>
  708. RUidGid webdesi2 webdesi2
  709. </IfModule>
  710. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/309marketing.com/cgi-bin/
  711.  
  712. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  713.  
  714. </VirtualHost>
  715.  
  716. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  717.  
  718. <VirtualHost 108.165.22.184:80>
  719. ServerName 7onprospect.webdesign309.com
  720. ServerAlias www.7onprospect.webdesign309.com www.7onprospect.com 7onprospect.com
  721. DocumentRoot /home/webdesi2/public_html/hosted/7onprospect.com
  722. ServerAdmin webmaster@7onprospect.webdesign309.com
  723. UseCanonicalName Off
  724. CustomLog /usr/local/apache/domlogs/7onprospect.webdesign309.com combined
  725. CustomLog /usr/local/apache/domlogs/7onprospect.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  726. ## User webdesi2 # Needed for Cpanel::ApacheConf
  727. UserDir enabled webdesi2
  728. <IfModule !mod_disable_suexec.c>
  729. <IfModule !mod_ruid2.c>
  730. SuexecUserGroup webdesi2 webdesi2
  731. </IfModule>
  732. </IfModule>
  733. <IfModule mod_ruid2.c>
  734. RUidGid webdesi2 webdesi2
  735. </IfModule>
  736. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/7onprospect.com/cgi-bin/
  737.  
  738. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  739.  
  740. </VirtualHost>
  741.  
  742. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  743.  
  744. <VirtualHost 108.165.22.184:80>
  745. ServerName aspenandlucy.webdesign309.com
  746. ServerAlias aspenandlucy.com www.aspenandlucy.webdesign309.com www.aspenandlucy.com
  747. DocumentRoot /home/webdesi2/public_html/hosted/aspenandlucy.com
  748. ServerAdmin webmaster@aspenandlucy.webdesign309.com
  749. UseCanonicalName Off
  750. CustomLog /usr/local/apache/domlogs/aspenandlucy.webdesign309.com combined
  751. CustomLog /usr/local/apache/domlogs/aspenandlucy.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  752. ## User webdesi2 # Needed for Cpanel::ApacheConf
  753. UserDir enabled webdesi2
  754. <IfModule !mod_disable_suexec.c>
  755. <IfModule !mod_ruid2.c>
  756. SuexecUserGroup webdesi2 webdesi2
  757. </IfModule>
  758. </IfModule>
  759. <IfModule mod_ruid2.c>
  760. RUidGid webdesi2 webdesi2
  761. </IfModule>
  762. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/aspenandlucy.com/cgi-bin/
  763.  
  764. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  765.  
  766. </VirtualHost>
  767.  
  768. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  769.  
  770. <VirtualHost 108.165.22.184:80>
  771. ServerName bankruptcylawpeoria.webdesign309.com
  772. ServerAlias bankruptcylawpeoria.com www.bankruptcylawpeoria.webdesign309.com www.bankruptcylawpeoria.com
  773. DocumentRoot /home/webdesi2/public_html/hosted/bankruptcylawpeoria.com
  774. ServerAdmin webmaster@bankruptcylawpeoria.webdesign309.com
  775. UseCanonicalName Off
  776. CustomLog /usr/local/apache/domlogs/bankruptcylawpeoria.webdesign309.com combined
  777. CustomLog /usr/local/apache/domlogs/bankruptcylawpeoria.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  778. ## User webdesi2 # Needed for Cpanel::ApacheConf
  779. UserDir enabled webdesi2
  780. <IfModule !mod_disable_suexec.c>
  781. <IfModule !mod_ruid2.c>
  782. SuexecUserGroup webdesi2 webdesi2
  783. </IfModule>
  784. </IfModule>
  785. <IfModule mod_ruid2.c>
  786. RUidGid webdesi2 webdesi2
  787. </IfModule>
  788. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/bankruptcylawpeoria.com/cgi-bin/
  789.  
  790. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  791.  
  792. </VirtualHost>
  793.  
  794. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  795.  
  796. <VirtualHost 108.165.22.184:80>
  797. ServerName benassi.webdesign309.com
  798. ServerAlias benassi.com www.benassi.webdesign309.com www.benassi.com
  799. DocumentRoot /home/webdesi2/public_html/hosted/benassi.com
  800. ServerAdmin webmaster@benassi.webdesign309.com
  801. UseCanonicalName Off
  802. CustomLog /usr/local/apache/domlogs/benassi.webdesign309.com combined
  803. CustomLog /usr/local/apache/domlogs/benassi.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  804. ## User webdesi2 # Needed for Cpanel::ApacheConf
  805. UserDir enabled webdesi2
  806. <IfModule !mod_disable_suexec.c>
  807. <IfModule !mod_ruid2.c>
  808. SuexecUserGroup webdesi2 webdesi2
  809. </IfModule>
  810. </IfModule>
  811. <IfModule mod_ruid2.c>
  812. RUidGid webdesi2 webdesi2
  813. </IfModule>
  814. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/benassi.com/cgi-bin/
  815.  
  816. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  817.  
  818. </VirtualHost>
  819.  
  820. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  821.  
  822. <VirtualHost 108.165.22.184:80>
  823. ServerName betterway.webdesign309.com
  824. ServerAlias www.betterway.webdesign309.com
  825. DocumentRoot /home/webdesi2/public_html/dev/betterway
  826. ServerAdmin webmaster@betterway.webdesign309.com
  827. UseCanonicalName On
  828. CustomLog /usr/local/apache/domlogs/betterway.webdesign309.com combined
  829. CustomLog /usr/local/apache/domlogs/betterway.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  830. ## User webdesi2 # Needed for Cpanel::ApacheConf
  831. UserDir enabled webdesi2
  832. <IfModule !mod_disable_suexec.c>
  833. <IfModule !mod_ruid2.c>
  834. SuexecUserGroup webdesi2 webdesi2
  835. </IfModule>
  836. </IfModule>
  837. <IfModule mod_ruid2.c>
  838. RUidGid webdesi2 webdesi2
  839. </IfModule>
  840. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/betterway/cgi-bin/
  841.  
  842. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  843.  
  844. </VirtualHost>
  845.  
  846. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  847.  
  848. <VirtualHost 108.165.22.184:80>
  849. ServerName betterwayhomeimprovements.webdesign309.com
  850. ServerAlias betterwayhomeimprovements.com www.betterwayhomeimprovements.com www.betterwayhomeimprovements.webdesign309.com
  851. DocumentRoot /home/webdesi2/public_html/hosted/betterwayhomeimprovements.com
  852. ServerAdmin webmaster@betterwayhomeimprovements.webdesign309.com
  853. UseCanonicalName Off
  854. CustomLog /usr/local/apache/domlogs/betterwayhomeimprovements.webdesign309.com combined
  855. CustomLog /usr/local/apache/domlogs/betterwayhomeimprovements.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  856. ## User webdesi2 # Needed for Cpanel::ApacheConf
  857. UserDir enabled webdesi2
  858. <IfModule !mod_disable_suexec.c>
  859. <IfModule !mod_ruid2.c>
  860. SuexecUserGroup webdesi2 webdesi2
  861. </IfModule>
  862. </IfModule>
  863. <IfModule mod_ruid2.c>
  864. RUidGid webdesi2 webdesi2
  865. </IfModule>
  866. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/betterwayhomeimprovements.com/cgi-bin/
  867.  
  868. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  869.  
  870. </VirtualHost>
  871.  
  872. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  873.  
  874. <VirtualHost 108.165.22.184:80>
  875. ServerName biblestudyproject.webdesign309.com
  876. ServerAlias www.biblestudyproject.webdesign309.com
  877. DocumentRoot /home/webdesi2/public_html/dev/biblestudyproject
  878. ServerAdmin webmaster@biblestudyproject.webdesign309.com
  879. UseCanonicalName On
  880. CustomLog /usr/local/apache/domlogs/biblestudyproject.webdesign309.com combined
  881. CustomLog /usr/local/apache/domlogs/biblestudyproject.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  882. ## User webdesi2 # Needed for Cpanel::ApacheConf
  883. UserDir enabled webdesi2
  884. <IfModule !mod_disable_suexec.c>
  885. <IfModule !mod_ruid2.c>
  886. SuexecUserGroup webdesi2 webdesi2
  887. </IfModule>
  888. </IfModule>
  889. <IfModule mod_ruid2.c>
  890. RUidGid webdesi2 webdesi2
  891. </IfModule>
  892. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/biblestudyproject/cgi-bin/
  893.  
  894. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  895.  
  896. </VirtualHost>
  897.  
  898. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  899.  
  900. <VirtualHost 108.165.22.184:80>
  901. ServerName bigdog.webdesign309.com
  902. ServerAlias www.bigdog.webdesign309.com
  903. DocumentRoot /home/webdesi2/public_html/dev/bigdog
  904. ServerAdmin webmaster@bigdog.webdesign309.com
  905. UseCanonicalName Off
  906. CustomLog /usr/local/apache/domlogs/bigdog.webdesign309.com combined
  907. CustomLog /usr/local/apache/domlogs/bigdog.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  908. ## User webdesi2 # Needed for Cpanel::ApacheConf
  909. UserDir enabled webdesi2
  910. <IfModule !mod_disable_suexec.c>
  911. <IfModule !mod_ruid2.c>
  912. SuexecUserGroup webdesi2 webdesi2
  913. </IfModule>
  914. </IfModule>
  915. <IfModule mod_ruid2.c>
  916. RUidGid webdesi2 webdesi2
  917. </IfModule>
  918. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/bigdog/cgi-bin/
  919.  
  920. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  921.  
  922. </VirtualHost>
  923.  
  924. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  925.  
  926. <VirtualHost 108.165.22.184:80>
  927. ServerName billslemonade.webdesign309.com
  928. ServerAlias www.billslemonade.com billslemonade.com www.billslemonade.webdesign309.com
  929. DocumentRoot /home/webdesi2/public_html/hosted/billslemonade.com
  930. ServerAdmin webmaster@billslemonade.webdesign309.com
  931. UseCanonicalName Off
  932. CustomLog /usr/local/apache/domlogs/billslemonade.webdesign309.com combined
  933. CustomLog /usr/local/apache/domlogs/billslemonade.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  934. ## User webdesi2 # Needed for Cpanel::ApacheConf
  935. UserDir enabled webdesi2
  936. <IfModule !mod_disable_suexec.c>
  937. <IfModule !mod_ruid2.c>
  938. SuexecUserGroup webdesi2 webdesi2
  939. </IfModule>
  940. </IfModule>
  941. <IfModule mod_ruid2.c>
  942. RUidGid webdesi2 webdesi2
  943. </IfModule>
  944. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/billslemonade.com/cgi-bin/
  945.  
  946. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  947.  
  948. </VirtualHost>
  949.  
  950. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  951.  
  952. <VirtualHost 108.165.22.184:80>
  953. ServerName bluechip.webdesign309.com
  954. ServerAlias www.bluechip.webdesign309.com
  955. DocumentRoot /home/webdesi2/public_html/dev/bluechip
  956. ServerAdmin webmaster@bluechip.webdesign309.com
  957. UseCanonicalName On
  958. CustomLog /usr/local/apache/domlogs/bluechip.webdesign309.com combined
  959. CustomLog /usr/local/apache/domlogs/bluechip.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  960. ## User webdesi2 # Needed for Cpanel::ApacheConf
  961. UserDir enabled webdesi2
  962. <IfModule !mod_disable_suexec.c>
  963. <IfModule !mod_ruid2.c>
  964. SuexecUserGroup webdesi2 webdesi2
  965. </IfModule>
  966. </IfModule>
  967. <IfModule mod_ruid2.c>
  968. RUidGid webdesi2 webdesi2
  969. </IfModule>
  970. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/bluechip/cgi-bin/
  971.  
  972. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  973.  
  974. </VirtualHost>
  975.  
  976. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  977.  
  978. <VirtualHost 108.165.22.184:80>
  979. ServerName centralillinoisfootandank.webdesign309.com
  980. ServerAlias centralillinoisfootandankle.com www.centralillinoisfootandankle.com www.centralillinoisfootandank.webdesign309.com
  981. DocumentRoot /home/webdesi2/public_html/hosted/centralillinoisfootandankle.com
  982. ServerAdmin webmaster@centralillinoisfootandank.webdesign309.com
  983. UseCanonicalName Off
  984. CustomLog /usr/local/apache/domlogs/centralillinoisfootandank.webdesign309.com combined
  985. CustomLog /usr/local/apache/domlogs/centralillinoisfootandank.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  986. ## User webdesi2 # Needed for Cpanel::ApacheConf
  987. UserDir enabled webdesi2
  988. <IfModule !mod_disable_suexec.c>
  989. <IfModule !mod_ruid2.c>
  990. SuexecUserGroup webdesi2 webdesi2
  991. </IfModule>
  992. </IfModule>
  993. <IfModule mod_ruid2.c>
  994. RUidGid webdesi2 webdesi2
  995. </IfModule>
  996. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/centralillinoisfootandankle.com/cgi-bin/
  997.  
  998. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  999.  
  1000. </VirtualHost>
  1001.  
  1002. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1003.  
  1004. <VirtualHost 108.165.22.184:80>
  1005. ServerName chambersservices.webdesign309.com
  1006. ServerAlias www.chambersservices.webdesign309.com
  1007. DocumentRoot /home/webdesi2/public_html/dev/chambersservices
  1008. ServerAdmin webmaster@chambersservices.webdesign309.com
  1009. UseCanonicalName On
  1010. CustomLog /usr/local/apache/domlogs/chambersservices.webdesign309.com combined
  1011. CustomLog /usr/local/apache/domlogs/chambersservices.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1012. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1013. UserDir enabled webdesi2
  1014. <IfModule !mod_disable_suexec.c>
  1015. <IfModule !mod_ruid2.c>
  1016. SuexecUserGroup webdesi2 webdesi2
  1017. </IfModule>
  1018. </IfModule>
  1019. <IfModule mod_ruid2.c>
  1020. RUidGid webdesi2 webdesi2
  1021. </IfModule>
  1022. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/chambersservices/cgi-bin/
  1023.  
  1024. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1025.  
  1026. </VirtualHost>
  1027.  
  1028. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1029.  
  1030. <VirtualHost 108.165.22.184:80>
  1031. ServerName chambersservicesinc.webdesign309.com
  1032. ServerAlias chambersservicesinc.com www.chambersservicesinc.webdesign309.com www.chambersservicesinc.com
  1033. DocumentRoot /home/webdesi2/public_html/hosted/chambersservicesinc.com
  1034. ServerAdmin webmaster@chambersservicesinc.webdesign309.com
  1035. UseCanonicalName Off
  1036. CustomLog /usr/local/apache/domlogs/chambersservicesinc.webdesign309.com combined
  1037. CustomLog /usr/local/apache/domlogs/chambersservicesinc.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1038. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1039. UserDir enabled webdesi2
  1040. <IfModule !mod_disable_suexec.c>
  1041. <IfModule !mod_ruid2.c>
  1042. SuexecUserGroup webdesi2 webdesi2
  1043. </IfModule>
  1044. </IfModule>
  1045. <IfModule mod_ruid2.c>
  1046. RUidGid webdesi2 webdesi2
  1047. </IfModule>
  1048. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/chambersservicesinc.com/cgi-bin/
  1049.  
  1050. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1051.  
  1052. </VirtualHost>
  1053.  
  1054. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1055.  
  1056. <VirtualHost 108.165.22.184:80>
  1057. ServerName churchwindowreplacement.webdesign309.com
  1058. ServerAlias www.churchwindowreplacement.com churchwindowreplacement.com www.churchwindowreplacement.webdesign309.com
  1059. DocumentRoot /home/webdesi2/public_html/hosted/churchwindowreplacement.com
  1060. ServerAdmin webmaster@churchwindowreplacement.webdesign309.com
  1061. UseCanonicalName Off
  1062. CustomLog /usr/local/apache/domlogs/churchwindowreplacement.webdesign309.com combined
  1063. CustomLog /usr/local/apache/domlogs/churchwindowreplacement.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1064. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1065. UserDir enabled webdesi2
  1066. <IfModule !mod_disable_suexec.c>
  1067. <IfModule !mod_ruid2.c>
  1068. SuexecUserGroup webdesi2 webdesi2
  1069. </IfModule>
  1070. </IfModule>
  1071. <IfModule mod_ruid2.c>
  1072. RUidGid webdesi2 webdesi2
  1073. </IfModule>
  1074. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/churchwindowreplacement.com/cgi-bin/
  1075.  
  1076. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1077.  
  1078. </VirtualHost>
  1079.  
  1080. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1081.  
  1082. <VirtualHost 108.165.22.184:80>
  1083. ServerName couricenter.webdesign309.com
  1084. ServerAlias www.couricenter.webdesign309.com
  1085. DocumentRoot /home/webdesi2/public_html/dev/couricenter
  1086. ServerAdmin webmaster@couricenter.webdesign309.com
  1087. UseCanonicalName On
  1088. CustomLog /usr/local/apache/domlogs/couricenter.webdesign309.com combined
  1089. CustomLog /usr/local/apache/domlogs/couricenter.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1090. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1091. UserDir enabled webdesi2
  1092. <IfModule !mod_disable_suexec.c>
  1093. <IfModule !mod_ruid2.c>
  1094. SuexecUserGroup webdesi2 webdesi2
  1095. </IfModule>
  1096. </IfModule>
  1097. <IfModule mod_ruid2.c>
  1098. RUidGid webdesi2 webdesi2
  1099. </IfModule>
  1100. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/couricenter/cgi-bin/
  1101.  
  1102. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1103.  
  1104. </VirtualHost>
  1105.  
  1106. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1107.  
  1108. <VirtualHost 108.165.22.184:80>
  1109. ServerName dev.illinoisorganizer.com
  1110. ServerAlias www.dev.illinoisorganizer.com
  1111. DocumentRoot /home/webdesi2/public_html/dev/illinoisorganizer
  1112. ServerAdmin webmaster@dev.illinoisorganizer.com
  1113. UseCanonicalName On
  1114. CustomLog /usr/local/apache/domlogs/dev.illinoisorganizer.com combined
  1115. CustomLog /usr/local/apache/domlogs/dev.illinoisorganizer.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1116. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1117. UserDir enabled webdesi2
  1118. <IfModule !mod_disable_suexec.c>
  1119. <IfModule !mod_ruid2.c>
  1120. SuexecUserGroup webdesi2 webdesi2
  1121. </IfModule>
  1122. </IfModule>
  1123. <IfModule mod_ruid2.c>
  1124. RUidGid webdesi2 webdesi2
  1125. </IfModule>
  1126. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/illinoisorganizer/cgi-bin/
  1127.  
  1128. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1129.  
  1130. </VirtualHost>
  1131.  
  1132. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1133.  
  1134. <VirtualHost 108.165.22.184:80>
  1135. ServerName development.peoriadentist.com
  1136. ServerAlias www.development.peoriadentist.com
  1137. DocumentRoot /home/webdesi2/public_html/dev/peoriadentist
  1138. ServerAdmin webmaster@development.peoriadentist.com
  1139. UseCanonicalName On
  1140. CustomLog /usr/local/apache/domlogs/development.peoriadentist.com combined
  1141. CustomLog /usr/local/apache/domlogs/development.peoriadentist.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1142. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1143. UserDir enabled webdesi2
  1144. <IfModule !mod_disable_suexec.c>
  1145. <IfModule !mod_ruid2.c>
  1146. SuexecUserGroup webdesi2 webdesi2
  1147. </IfModule>
  1148. </IfModule>
  1149. <IfModule mod_ruid2.c>
  1150. RUidGid webdesi2 webdesi2
  1151. </IfModule>
  1152. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/peoriadentist/cgi-bin/
  1153.  
  1154. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1155.  
  1156. </VirtualHost>
  1157.  
  1158. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1159.  
  1160. <VirtualHost 108.165.22.184:80>
  1161. ServerName development.webdesign309.com
  1162. ServerAlias www.development.webdesign309.com
  1163. DocumentRoot /home/webdesi2/public_html/dev/webdesign309
  1164. ServerAdmin webmaster@development.webdesign309.com
  1165. UseCanonicalName On
  1166. CustomLog /usr/local/apache/domlogs/development.webdesign309.com combined
  1167. CustomLog /usr/local/apache/domlogs/development.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1168. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1169. UserDir enabled webdesi2
  1170. <IfModule !mod_disable_suexec.c>
  1171. <IfModule !mod_ruid2.c>
  1172. SuexecUserGroup webdesi2 webdesi2
  1173. </IfModule>
  1174. </IfModule>
  1175. <IfModule mod_ruid2.c>
  1176. RUidGid webdesi2 webdesi2
  1177. </IfModule>
  1178. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/webdesign309/cgi-bin/
  1179.  
  1180. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1181.  
  1182. </VirtualHost>
  1183.  
  1184. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1185.  
  1186. <VirtualHost 108.165.22.184:80>
  1187. ServerName evenglowlodge.webdesign309.com
  1188. ServerAlias www.evenglowlodge.webdesign309.com
  1189. DocumentRoot /home/webdesi2/public_html/dev/evenglowlodge
  1190. ServerAdmin webmaster@evenglowlodge.webdesign309.com
  1191. UseCanonicalName On
  1192. CustomLog /usr/local/apache/domlogs/evenglowlodge.webdesign309.com combined
  1193. CustomLog /usr/local/apache/domlogs/evenglowlodge.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1194. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1195. UserDir enabled webdesi2
  1196. <IfModule !mod_disable_suexec.c>
  1197. <IfModule !mod_ruid2.c>
  1198. SuexecUserGroup webdesi2 webdesi2
  1199. </IfModule>
  1200. </IfModule>
  1201. <IfModule mod_ruid2.c>
  1202. RUidGid webdesi2 webdesi2
  1203. </IfModule>
  1204. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/evenglowlodge/cgi-bin/
  1205.  
  1206. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1207.  
  1208. </VirtualHost>
  1209.  
  1210. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1211.  
  1212. <VirtualHost 108.165.22.184:80>
  1213. ServerName freeairpump.webdesign309.com
  1214. ServerAlias www.freeairpump.webdesign309.com
  1215. DocumentRoot /home/webdesi2/public_html/dev/freeairpump
  1216. ServerAdmin webmaster@freeairpump.webdesign309.com
  1217. UseCanonicalName On
  1218. CustomLog /usr/local/apache/domlogs/freeairpump.webdesign309.com combined
  1219. CustomLog /usr/local/apache/domlogs/freeairpump.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1220. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1221. UserDir enabled webdesi2
  1222. <IfModule !mod_disable_suexec.c>
  1223. <IfModule !mod_ruid2.c>
  1224. SuexecUserGroup webdesi2 webdesi2
  1225. </IfModule>
  1226. </IfModule>
  1227. <IfModule mod_ruid2.c>
  1228. RUidGid webdesi2 webdesi2
  1229. </IfModule>
  1230. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/freeairpump/cgi-bin/
  1231.  
  1232. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1233.  
  1234. </VirtualHost>
  1235.  
  1236. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1237.  
  1238. <VirtualHost 108.165.22.184:80>
  1239. ServerName glassspecialty.webdesign309.com
  1240. ServerAlias www.glassspecialty.webdesign309.com
  1241. DocumentRoot /home/webdesi2/public_html/dev/glassspecialty
  1242. ServerAdmin webmaster@glassspecialty.webdesign309.com
  1243. UseCanonicalName On
  1244. CustomLog /usr/local/apache/domlogs/glassspecialty.webdesign309.com combined
  1245. CustomLog /usr/local/apache/domlogs/glassspecialty.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1246. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1247. UserDir enabled webdesi2
  1248. <IfModule !mod_disable_suexec.c>
  1249. <IfModule !mod_ruid2.c>
  1250. SuexecUserGroup webdesi2 webdesi2
  1251. </IfModule>
  1252. </IfModule>
  1253. <IfModule mod_ruid2.c>
  1254. RUidGid webdesi2 webdesi2
  1255. </IfModule>
  1256. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/glassspecialty/cgi-bin/
  1257.  
  1258. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1259.  
  1260. </VirtualHost>
  1261.  
  1262. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1263.  
  1264. <VirtualHost 108.165.22.184:80>
  1265. ServerName glassspecialtywlc.webdesign309.com
  1266. ServerAlias glassspecialtywlc.net www.glassspecialtywlc.webdesign309.com www.glassspecialtywlc.net
  1267. DocumentRoot /home/webdesi2/public_html/hosted/glassspecialtywlc.net
  1268. ServerAdmin webmaster@glassspecialtywlc.webdesign309.com
  1269. UseCanonicalName Off
  1270. CustomLog /usr/local/apache/domlogs/glassspecialtywlc.webdesign309.com combined
  1271. CustomLog /usr/local/apache/domlogs/glassspecialtywlc.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1272. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1273. UserDir enabled webdesi2
  1274. <IfModule !mod_disable_suexec.c>
  1275. <IfModule !mod_ruid2.c>
  1276. SuexecUserGroup webdesi2 webdesi2
  1277. </IfModule>
  1278. </IfModule>
  1279. <IfModule mod_ruid2.c>
  1280. RUidGid webdesi2 webdesi2
  1281. </IfModule>
  1282. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/glassspecialtywlc.net/cgi-bin/
  1283.  
  1284. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1285.  
  1286. </VirtualHost>
  1287.  
  1288. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1289.  
  1290. <VirtualHost 108.165.22.184:80>
  1291. ServerName grovesservicecenter.webdesign309.com
  1292. ServerAlias www.grovesservicecenter.webdesign309.com
  1293. DocumentRoot /home/webdesi2/public_html/dev/grovesservicecenter
  1294. ServerAdmin webmaster@grovesservicecenter.webdesign309.com
  1295. UseCanonicalName On
  1296. CustomLog /usr/local/apache/domlogs/grovesservicecenter.webdesign309.com combined
  1297. CustomLog /usr/local/apache/domlogs/grovesservicecenter.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1298. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1299. UserDir enabled webdesi2
  1300. <IfModule !mod_disable_suexec.c>
  1301. <IfModule !mod_ruid2.c>
  1302. SuexecUserGroup webdesi2 webdesi2
  1303. </IfModule>
  1304. </IfModule>
  1305. <IfModule mod_ruid2.c>
  1306. RUidGid webdesi2 webdesi2
  1307. </IfModule>
  1308. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/grovesservicecenter/cgi-bin/
  1309.  
  1310. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1311.  
  1312. </VirtualHost>
  1313.  
  1314. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1315.  
  1316. <VirtualHost 108.165.22.184:80>
  1317. ServerName grovesservicecentercom.webdesign309.com
  1318. ServerAlias grovesservicecenter.com www.grovesservicecenter.com www.grovesservicecentercom.webdesign309.com
  1319. DocumentRoot /home/webdesi2/public_html/hosted/grovesservicecenter.com
  1320. ServerAdmin webmaster@grovesservicecentercom.webdesign309.com
  1321. UseCanonicalName Off
  1322. CustomLog /usr/local/apache/domlogs/grovesservicecentercom.webdesign309.com combined
  1323. CustomLog /usr/local/apache/domlogs/grovesservicecentercom.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1324. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1325. UserDir enabled webdesi2
  1326. <IfModule !mod_disable_suexec.c>
  1327. <IfModule !mod_ruid2.c>
  1328. SuexecUserGroup webdesi2 webdesi2
  1329. </IfModule>
  1330. </IfModule>
  1331. <IfModule mod_ruid2.c>
  1332. RUidGid webdesi2 webdesi2
  1333. </IfModule>
  1334. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/grovesservicecenter.com/cgi-bin/
  1335.  
  1336. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1337.  
  1338. </VirtualHost>
  1339.  
  1340. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1341.  
  1342. <VirtualHost 108.165.22.184:80>
  1343. ServerName heartlandfinancial.webdesign309.com
  1344. ServerAlias www.heartlandfinancial.webdesign309.com
  1345. DocumentRoot /home/webdesi2/public_html/dev/heartlandfinancial
  1346. ServerAdmin webmaster@heartlandfinancial.webdesign309.com
  1347. UseCanonicalName On
  1348. CustomLog /usr/local/apache/domlogs/heartlandfinancial.webdesign309.com combined
  1349. CustomLog /usr/local/apache/domlogs/heartlandfinancial.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1350. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1351. UserDir enabled webdesi2
  1352. <IfModule !mod_disable_suexec.c>
  1353. <IfModule !mod_ruid2.c>
  1354. SuexecUserGroup webdesi2 webdesi2
  1355. </IfModule>
  1356. </IfModule>
  1357. <IfModule mod_ruid2.c>
  1358. RUidGid webdesi2 webdesi2
  1359. </IfModule>
  1360. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/heartlandfinancial/cgi-bin/
  1361.  
  1362. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1363.  
  1364. </VirtualHost>
  1365.  
  1366. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1367.  
  1368. <VirtualHost 108.165.22.184:80>
  1369. ServerName heartlandfinancialcom.webdesign309.com
  1370. ServerAlias www.heartlandfinancialstrategists.com heartlandfinancialstrategists.com www.heartlandfinancialcom.webdesign309.com
  1371. DocumentRoot /home/webdesi2/public_html/hosted/heartlandfinancialstrategists.com
  1372. ServerAdmin webmaster@heartlandfinancialcom.webdesign309.com
  1373. UseCanonicalName Off
  1374. CustomLog /usr/local/apache/domlogs/heartlandfinancialcom.webdesign309.com combined
  1375. CustomLog /usr/local/apache/domlogs/heartlandfinancialcom.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1376. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1377. UserDir enabled webdesi2
  1378. <IfModule !mod_disable_suexec.c>
  1379. <IfModule !mod_ruid2.c>
  1380. SuexecUserGroup webdesi2 webdesi2
  1381. </IfModule>
  1382. </IfModule>
  1383. <IfModule mod_ruid2.c>
  1384. RUidGid webdesi2 webdesi2
  1385. </IfModule>
  1386. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/heartlandfinancialstrategists.com/cgi-bin/
  1387.  
  1388. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1389.  
  1390. </VirtualHost>
  1391.  
  1392. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1393.  
  1394. <VirtualHost 108.165.22.184:80>
  1395. ServerName hfsinvest.webdesign309.com
  1396. ServerAlias hfsinvest.com www.hfsinvest.webdesign309.com www.hfsinvest.com
  1397. DocumentRoot /home/webdesi2/public_html/hosted/hfsinvest.com
  1398. ServerAdmin webmaster@hfsinvest.webdesign309.com
  1399. UseCanonicalName Off
  1400. CustomLog /usr/local/apache/domlogs/hfsinvest.webdesign309.com combined
  1401. CustomLog /usr/local/apache/domlogs/hfsinvest.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1402. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1403. UserDir enabled webdesi2
  1404. <IfModule !mod_disable_suexec.c>
  1405. <IfModule !mod_ruid2.c>
  1406. SuexecUserGroup webdesi2 webdesi2
  1407. </IfModule>
  1408. </IfModule>
  1409. <IfModule mod_ruid2.c>
  1410. RUidGid webdesi2 webdesi2
  1411. </IfModule>
  1412. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/hfsinvest.com/cgi-bin/
  1413.  
  1414. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1415.  
  1416. </VirtualHost>
  1417.  
  1418. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1419.  
  1420. <VirtualHost 108.165.22.184:80>
  1421. ServerName homecomfortinsulation.webdesign309.com
  1422. ServerAlias www.homecomfortinsulation.webdesign309.com
  1423. DocumentRoot /home/webdesi2/public_html/dev/homecomfortinsulation
  1424. ServerAdmin webmaster@homecomfortinsulation.webdesign309.com
  1425. UseCanonicalName On
  1426. CustomLog /usr/local/apache/domlogs/homecomfortinsulation.webdesign309.com combined
  1427. CustomLog /usr/local/apache/domlogs/homecomfortinsulation.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1428. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1429. UserDir enabled webdesi2
  1430. <IfModule !mod_disable_suexec.c>
  1431. <IfModule !mod_ruid2.c>
  1432. SuexecUserGroup webdesi2 webdesi2
  1433. </IfModule>
  1434. </IfModule>
  1435. <IfModule mod_ruid2.c>
  1436. RUidGid webdesi2 webdesi2
  1437. </IfModule>
  1438. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/homecomfortinsulation/cgi-bin/
  1439.  
  1440. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1441.  
  1442. </VirtualHost>
  1443.  
  1444. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1445.  
  1446. <VirtualHost 108.165.22.184:80>
  1447. ServerName hunterlawtampabay.webdesign309.com
  1448. ServerAlias hunterlawtampabay.com www.hunterlawtampabay.webdesign309.com www.hunterlawtampabay.com
  1449. DocumentRoot /home/webdesi2/public_html/hosted/hunterlawtampabay.com
  1450. ServerAdmin webmaster@hunterlawtampabay.webdesign309.com
  1451. UseCanonicalName Off
  1452. CustomLog /usr/local/apache/domlogs/hunterlawtampabay.webdesign309.com combined
  1453. CustomLog /usr/local/apache/domlogs/hunterlawtampabay.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1454. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1455. UserDir enabled webdesi2
  1456. <IfModule !mod_disable_suexec.c>
  1457. <IfModule !mod_ruid2.c>
  1458. SuexecUserGroup webdesi2 webdesi2
  1459. </IfModule>
  1460. </IfModule>
  1461. <IfModule mod_ruid2.c>
  1462. RUidGid webdesi2 webdesi2
  1463. </IfModule>
  1464. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/hunterlawtampabay.com/cgi-bin/
  1465.  
  1466. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1467.  
  1468. </VirtualHost>
  1469.  
  1470. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1471.  
  1472. <VirtualHost 108.165.22.184:80>
  1473. ServerName illinoisfoundationexperts.webdesign309.com
  1474. ServerAlias www.illinoisfoundationexperts.webdesign309.com illinoisfoundationexperts.com www.illinoisfoundationexperts.com
  1475. DocumentRoot /home/webdesi2/public_html/hosted/illinoisfoundationexperts.com
  1476. ServerAdmin webmaster@illinoisfoundationexperts.webdesign309.com
  1477. UseCanonicalName Off
  1478. CustomLog /usr/local/apache/domlogs/illinoisfoundationexperts.webdesign309.com combined
  1479. CustomLog /usr/local/apache/domlogs/illinoisfoundationexperts.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1480. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1481. UserDir enabled webdesi2
  1482. <IfModule !mod_disable_suexec.c>
  1483. <IfModule !mod_ruid2.c>
  1484. SuexecUserGroup webdesi2 webdesi2
  1485. </IfModule>
  1486. </IfModule>
  1487. <IfModule mod_ruid2.c>
  1488. RUidGid webdesi2 webdesi2
  1489. </IfModule>
  1490. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/illinoisfoundationexperts.com/cgi-bin/
  1491.  
  1492. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1493.  
  1494. </VirtualHost>
  1495.  
  1496. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1497.  
  1498. <VirtualHost 108.165.22.184:80>
  1499. ServerName illinoisorganizer.webdesign309.com
  1500. ServerAlias www.illinoisorganizer.webdesign309.com illinoisorganizer.com www.illinoisorganizer.com
  1501. DocumentRoot /home/webdesi2/public_html/hosted/illinoisorganizer.com
  1502. ServerAdmin webmaster@illinoisorganizer.webdesign309.com
  1503. UseCanonicalName Off
  1504. CustomLog /usr/local/apache/domlogs/illinoisorganizer.webdesign309.com combined
  1505. CustomLog /usr/local/apache/domlogs/illinoisorganizer.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1506. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1507. UserDir enabled webdesi2
  1508. <IfModule !mod_disable_suexec.c>
  1509. <IfModule !mod_ruid2.c>
  1510. SuexecUserGroup webdesi2 webdesi2
  1511. </IfModule>
  1512. </IfModule>
  1513. <IfModule mod_ruid2.c>
  1514. RUidGid webdesi2 webdesi2
  1515. </IfModule>
  1516. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/illinoisorganizer.com/cgi-bin/
  1517.  
  1518. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1519.  
  1520. </VirtualHost>
  1521.  
  1522. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1523.  
  1524. <VirtualHost 108.165.22.184:80>
  1525. ServerName kepplelaw.webdesign309.com
  1526. ServerAlias www.kepplelaw.webdesign309.com
  1527. DocumentRoot /home/webdesi2/public_html/dev/kepplelaw
  1528. ServerAdmin webmaster@kepplelaw.webdesign309.com
  1529. UseCanonicalName On
  1530. CustomLog /usr/local/apache/domlogs/kepplelaw.webdesign309.com combined
  1531. CustomLog /usr/local/apache/domlogs/kepplelaw.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1532. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1533. UserDir enabled webdesi2
  1534. <IfModule !mod_disable_suexec.c>
  1535. <IfModule !mod_ruid2.c>
  1536. SuexecUserGroup webdesi2 webdesi2
  1537. </IfModule>
  1538. </IfModule>
  1539. <IfModule mod_ruid2.c>
  1540. RUidGid webdesi2 webdesi2
  1541. </IfModule>
  1542. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/kepplelaw/cgi-bin/
  1543.  
  1544. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1545.  
  1546. </VirtualHost>
  1547.  
  1548. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1549.  
  1550. <VirtualHost 108.165.22.184:80>
  1551. ServerName kourispub.webdesign309.com
  1552. ServerAlias www.kourispub.webdesign309.com www.kourispub.com kourispub.com
  1553. DocumentRoot /home/webdesi2/public_html/hosted/kourispub.com
  1554. ServerAdmin webmaster@kourispub.webdesign309.com
  1555. UseCanonicalName Off
  1556. CustomLog /usr/local/apache/domlogs/kourispub.webdesign309.com combined
  1557. CustomLog /usr/local/apache/domlogs/kourispub.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1558. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1559. UserDir enabled webdesi2
  1560. <IfModule !mod_disable_suexec.c>
  1561. <IfModule !mod_ruid2.c>
  1562. SuexecUserGroup webdesi2 webdesi2
  1563. </IfModule>
  1564. </IfModule>
  1565. <IfModule mod_ruid2.c>
  1566. RUidGid webdesi2 webdesi2
  1567. </IfModule>
  1568. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/kourispub.com/cgi-bin/
  1569.  
  1570. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1571.  
  1572. </VirtualHost>
  1573.  
  1574. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1575.  
  1576. <VirtualHost 108.165.22.184:80>
  1577. ServerName krugdental.webdesign309.com
  1578. ServerAlias www.krugdental.webdesign309.com krugdental.com www.krugdental.com
  1579. DocumentRoot /home/webdesi2/public_html/hosted/krugdental.com
  1580. ServerAdmin webmaster@krugdental.webdesign309.com
  1581. UseCanonicalName Off
  1582. CustomLog /usr/local/apache/domlogs/krugdental.webdesign309.com combined
  1583. CustomLog /usr/local/apache/domlogs/krugdental.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1584. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1585. UserDir enabled webdesi2
  1586. <IfModule !mod_disable_suexec.c>
  1587. <IfModule !mod_ruid2.c>
  1588. SuexecUserGroup webdesi2 webdesi2
  1589. </IfModule>
  1590. </IfModule>
  1591. <IfModule mod_ruid2.c>
  1592. RUidGid webdesi2 webdesi2
  1593. </IfModule>
  1594. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/krugdental.com/cgi-bin/
  1595.  
  1596. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1597.  
  1598. </VirtualHost>
  1599.  
  1600. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1601.  
  1602. <VirtualHost 108.165.22.184:80>
  1603. ServerName lariatsteakhouse.webdesign309.com
  1604. ServerAlias lariatsteakhouserestaurant.com www.lariatsteakhouse.webdesign309.com www.lariatsteakhouserestaurant.com
  1605. DocumentRoot /home/webdesi2/public_html/hosted/lariatsteakhouserestaurant.com
  1606. ServerAdmin webmaster@lariatsteakhouse.webdesign309.com
  1607. UseCanonicalName Off
  1608. CustomLog /usr/local/apache/domlogs/lariatsteakhouse.webdesign309.com combined
  1609. CustomLog /usr/local/apache/domlogs/lariatsteakhouse.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1610. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1611. UserDir enabled webdesi2
  1612. <IfModule !mod_disable_suexec.c>
  1613. <IfModule !mod_ruid2.c>
  1614. SuexecUserGroup webdesi2 webdesi2
  1615. </IfModule>
  1616. </IfModule>
  1617. <IfModule mod_ruid2.c>
  1618. RUidGid webdesi2 webdesi2
  1619. </IfModule>
  1620. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/lariatsteakhouserestaurant.com/cgi-bin/
  1621.  
  1622. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1623.  
  1624. </VirtualHost>
  1625.  
  1626. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1627.  
  1628. <VirtualHost 108.165.22.184:80>
  1629. ServerName mapleclub.webdesign309.com
  1630. ServerAlias www.mapleclub.webdesign309.com
  1631. DocumentRoot /home/webdesi2/public_html/dev/mapleclub
  1632. ServerAdmin webmaster@mapleclub.webdesign309.com
  1633. UseCanonicalName On
  1634. CustomLog /usr/local/apache/domlogs/mapleclub.webdesign309.com combined
  1635. CustomLog /usr/local/apache/domlogs/mapleclub.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1636. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1637. UserDir enabled webdesi2
  1638. <IfModule !mod_disable_suexec.c>
  1639. <IfModule !mod_ruid2.c>
  1640. SuexecUserGroup webdesi2 webdesi2
  1641. </IfModule>
  1642. </IfModule>
  1643. <IfModule mod_ruid2.c>
  1644. RUidGid webdesi2 webdesi2
  1645. </IfModule>
  1646. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/mapleclub/cgi-bin/
  1647.  
  1648. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1649.  
  1650. </VirtualHost>
  1651.  
  1652. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1653.  
  1654. <VirtualHost 108.165.22.184:80>
  1655. ServerName newdevelopment.webdesign309.com
  1656. ServerAlias www.newdevelopment.webdesign309.com
  1657. DocumentRoot /home/webdesi2/public_html/dev/newdevelopment
  1658. ServerAdmin webmaster@newdevelopment.webdesign309.com
  1659. UseCanonicalName On
  1660. CustomLog /usr/local/apache/domlogs/newdevelopment.webdesign309.com combined
  1661. CustomLog /usr/local/apache/domlogs/newdevelopment.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1662. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1663. UserDir enabled webdesi2
  1664. <IfModule !mod_disable_suexec.c>
  1665. <IfModule !mod_ruid2.c>
  1666. SuexecUserGroup webdesi2 webdesi2
  1667. </IfModule>
  1668. </IfModule>
  1669. <IfModule mod_ruid2.c>
  1670. RUidGid webdesi2 webdesi2
  1671. </IfModule>
  1672. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/newdevelopment/cgi-bin/
  1673.  
  1674. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1675.  
  1676. </VirtualHost>
  1677.  
  1678. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1679.  
  1680. <VirtualHost 108.165.22.184:80>
  1681. ServerName nsa.webdesign309.com
  1682. ServerAlias www.nsa.webdesign309.com
  1683. DocumentRoot /home/webdesi2/public_html/dev/nsa
  1684. ServerAdmin webmaster@nsa.webdesign309.com
  1685. UseCanonicalName On
  1686. CustomLog /usr/local/apache/domlogs/nsa.webdesign309.com combined
  1687. CustomLog /usr/local/apache/domlogs/nsa.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1688. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1689. UserDir enabled webdesi2
  1690. <IfModule !mod_disable_suexec.c>
  1691. <IfModule !mod_ruid2.c>
  1692. SuexecUserGroup webdesi2 webdesi2
  1693. </IfModule>
  1694. </IfModule>
  1695. <IfModule mod_ruid2.c>
  1696. RUidGid webdesi2 webdesi2
  1697. </IfModule>
  1698. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/nsa/cgi-bin/
  1699.  
  1700. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1701.  
  1702. </VirtualHost>
  1703.  
  1704. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1705.  
  1706. <VirtualHost 108.165.22.184:80>
  1707. ServerName oberlanderelectric.webdesign309.com
  1708. ServerAlias www.oberlanderelectric.webdesign309.com www.oberlanderelectric.com oberlanderelectric.com
  1709. DocumentRoot /home/webdesi2/public_html/hosted/oberlanderelectric.com
  1710. ServerAdmin webmaster@oberlanderelectric.webdesign309.com
  1711. UseCanonicalName Off
  1712. CustomLog /usr/local/apache/domlogs/oberlanderelectric.webdesign309.com combined
  1713. CustomLog /usr/local/apache/domlogs/oberlanderelectric.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1714. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1715. UserDir enabled webdesi2
  1716. <IfModule !mod_disable_suexec.c>
  1717. <IfModule !mod_ruid2.c>
  1718. SuexecUserGroup webdesi2 webdesi2
  1719. </IfModule>
  1720. </IfModule>
  1721. <IfModule mod_ruid2.c>
  1722. RUidGid webdesi2 webdesi2
  1723. </IfModule>
  1724. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/oberlanderelectric.com/cgi-bin/
  1725.  
  1726. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1727.  
  1728. </VirtualHost>
  1729.  
  1730. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1731.  
  1732. <VirtualHost 108.165.22.184:80>
  1733. ServerName pandwbuilders.webdesign309.com
  1734. ServerAlias www.pandwbuilders.webdesign309.com
  1735. DocumentRoot /home/webdesi2/public_html/dev/pandwbuilders
  1736. ServerAdmin webmaster@pandwbuilders.webdesign309.com
  1737. UseCanonicalName On
  1738. CustomLog /usr/local/apache/domlogs/pandwbuilders.webdesign309.com combined
  1739. CustomLog /usr/local/apache/domlogs/pandwbuilders.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1740. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1741. UserDir enabled webdesi2
  1742. <IfModule !mod_disable_suexec.c>
  1743. <IfModule !mod_ruid2.c>
  1744. SuexecUserGroup webdesi2 webdesi2
  1745. </IfModule>
  1746. </IfModule>
  1747. <IfModule mod_ruid2.c>
  1748. RUidGid webdesi2 webdesi2
  1749. </IfModule>
  1750. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/pandwbuilders/cgi-bin/
  1751.  
  1752. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1753.  
  1754. </VirtualHost>
  1755.  
  1756. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1757.  
  1758. <VirtualHost 108.165.22.184:80>
  1759. ServerName pandwbuilderscom.webdesign309.com
  1760. ServerAlias www.pandwbuilderscom.webdesign309.com www.pandwbuilders.com pandwbuilders.com
  1761. DocumentRoot /home/webdesi2/public_html/hosted/pandwbuilders.com
  1762. ServerAdmin webmaster@pandwbuilderscom.webdesign309.com
  1763. UseCanonicalName Off
  1764. CustomLog /usr/local/apache/domlogs/pandwbuilderscom.webdesign309.com combined
  1765. CustomLog /usr/local/apache/domlogs/pandwbuilderscom.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1766. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1767. UserDir enabled webdesi2
  1768. <IfModule !mod_disable_suexec.c>
  1769. <IfModule !mod_ruid2.c>
  1770. SuexecUserGroup webdesi2 webdesi2
  1771. </IfModule>
  1772. </IfModule>
  1773. <IfModule mod_ruid2.c>
  1774. RUidGid webdesi2 webdesi2
  1775. </IfModule>
  1776. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/pandwbuilders.com/cgi-bin/
  1777.  
  1778. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1779.  
  1780. </VirtualHost>
  1781.  
  1782. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1783.  
  1784. <VirtualHost 108.165.22.184:80>
  1785. ServerName peoriadentist.webdesign309.com
  1786. ServerAlias www.peoriadentist.webdesign309.com www.peoriadentist.com peoriadentist.com
  1787. DocumentRoot /home/webdesi2/public_html/hosted/peoriadentist.com
  1788. ServerAdmin webmaster@peoriadentist.webdesign309.com
  1789. UseCanonicalName Off
  1790. CustomLog /usr/local/apache/domlogs/peoriadentist.webdesign309.com combined
  1791. CustomLog /usr/local/apache/domlogs/peoriadentist.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1792. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1793. UserDir enabled webdesi2
  1794. <IfModule !mod_disable_suexec.c>
  1795. <IfModule !mod_ruid2.c>
  1796. SuexecUserGroup webdesi2 webdesi2
  1797. </IfModule>
  1798. </IfModule>
  1799. <IfModule mod_ruid2.c>
  1800. RUidGid webdesi2 webdesi2
  1801. </IfModule>
  1802. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/peoriadentist.com/cgi-bin/
  1803.  
  1804. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1805.  
  1806. </VirtualHost>
  1807.  
  1808. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1809.  
  1810. <VirtualHost 108.165.22.184:80>
  1811. ServerName peoriasteakhouse.webdesign309.com
  1812. ServerAlias peoriasteakhouse.com www.peoriasteakhouse.webdesign309.com www.peoriasteakhouse.com
  1813. DocumentRoot /home/webdesi2/public_html/hosted/peoriasteakhouse.com
  1814. ServerAdmin webmaster@peoriasteakhouse.webdesign309.com
  1815. UseCanonicalName Off
  1816. CustomLog /usr/local/apache/domlogs/peoriasteakhouse.webdesign309.com combined
  1817. CustomLog /usr/local/apache/domlogs/peoriasteakhouse.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1818. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1819. UserDir enabled webdesi2
  1820. <IfModule !mod_disable_suexec.c>
  1821. <IfModule !mod_ruid2.c>
  1822. SuexecUserGroup webdesi2 webdesi2
  1823. </IfModule>
  1824. </IfModule>
  1825. <IfModule mod_ruid2.c>
  1826. RUidGid webdesi2 webdesi2
  1827. </IfModule>
  1828. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/peoriasteakhouse.com/cgi-bin/
  1829.  
  1830. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1831.  
  1832. </VirtualHost>
  1833.  
  1834. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1835.  
  1836. <VirtualHost 108.165.22.184:80>
  1837. ServerName phpmyadmin.webdesign309.com
  1838. ServerAlias www.phpmyadmin.webdesign309.com
  1839. DocumentRoot /home/webdesi2/public_html/phpmyadmin
  1840. ServerAdmin webmaster@phpmyadmin.webdesign309.com
  1841. UseCanonicalName On
  1842. CustomLog /usr/local/apache/domlogs/phpmyadmin.webdesign309.com combined
  1843. CustomLog /usr/local/apache/domlogs/phpmyadmin.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1844. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1845. UserDir enabled webdesi2
  1846. <IfModule !mod_disable_suexec.c>
  1847. <IfModule !mod_ruid2.c>
  1848. SuexecUserGroup webdesi2 webdesi2
  1849. </IfModule>
  1850. </IfModule>
  1851. <IfModule mod_ruid2.c>
  1852. RUidGid webdesi2 webdesi2
  1853. </IfModule>
  1854. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/phpmyadmin/cgi-bin/
  1855.  
  1856. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1857.  
  1858. </VirtualHost>
  1859.  
  1860. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1861.  
  1862. <VirtualHost 108.165.22.184:80>
  1863. ServerName pmgpodiatry.webdesign309.com
  1864. ServerAlias www.pmgpodiatry.webdesign309.com pmgpodiatry.com www.pmgpodiatry.com
  1865. DocumentRoot /home/webdesi2/public_html/hosted/pmgpodiatry.com
  1866. ServerAdmin webmaster@pmgpodiatry.webdesign309.com
  1867. UseCanonicalName Off
  1868. CustomLog /usr/local/apache/domlogs/pmgpodiatry.webdesign309.com combined
  1869. CustomLog /usr/local/apache/domlogs/pmgpodiatry.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1870. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1871. UserDir enabled webdesi2
  1872. <IfModule !mod_disable_suexec.c>
  1873. <IfModule !mod_ruid2.c>
  1874. SuexecUserGroup webdesi2 webdesi2
  1875. </IfModule>
  1876. </IfModule>
  1877. <IfModule mod_ruid2.c>
  1878. RUidGid webdesi2 webdesi2
  1879. </IfModule>
  1880. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/pmgpodiatry.com/cgi-bin/
  1881.  
  1882. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1883.  
  1884. </VirtualHost>
  1885.  
  1886. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1887.  
  1888. <VirtualHost 108.165.22.184:80>
  1889. ServerName premierpodiatry.webdesign309.com
  1890. ServerAlias www.premierpodiatry.webdesign309.com
  1891. DocumentRoot /home/webdesi2/public_html/dev/premierpodiatry
  1892. ServerAdmin webmaster@premierpodiatry.webdesign309.com
  1893. UseCanonicalName On
  1894. CustomLog /usr/local/apache/domlogs/premierpodiatry.webdesign309.com combined
  1895. CustomLog /usr/local/apache/domlogs/premierpodiatry.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1896. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1897. UserDir enabled webdesi2
  1898. <IfModule !mod_disable_suexec.c>
  1899. <IfModule !mod_ruid2.c>
  1900. SuexecUserGroup webdesi2 webdesi2
  1901. </IfModule>
  1902. </IfModule>
  1903. <IfModule mod_ruid2.c>
  1904. RUidGid webdesi2 webdesi2
  1905. </IfModule>
  1906. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/premierpodiatry/cgi-bin/
  1907.  
  1908. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1909.  
  1910. </VirtualHost>
  1911.  
  1912. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1913.  
  1914. <VirtualHost 108.165.22.184:80>
  1915. ServerName premierpodiatrynet.webdesign309.com
  1916. ServerAlias premierpodiatry.net www.premierpodiatry.net www.premierpodiatrynet.webdesign309.com
  1917. DocumentRoot /home/webdesi2/public_html/hosted/premierpodiatry.net
  1918. ServerAdmin webmaster@premierpodiatrynet.webdesign309.com
  1919. UseCanonicalName Off
  1920. CustomLog /usr/local/apache/domlogs/premierpodiatrynet.webdesign309.com combined
  1921. CustomLog /usr/local/apache/domlogs/premierpodiatrynet.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1922. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1923. UserDir enabled webdesi2
  1924. <IfModule !mod_disable_suexec.c>
  1925. <IfModule !mod_ruid2.c>
  1926. SuexecUserGroup webdesi2 webdesi2
  1927. </IfModule>
  1928. </IfModule>
  1929. <IfModule mod_ruid2.c>
  1930. RUidGid webdesi2 webdesi2
  1931. </IfModule>
  1932. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/premierpodiatry.net/cgi-bin/
  1933.  
  1934. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1935.  
  1936. </VirtualHost>
  1937.  
  1938. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1939.  
  1940. <VirtualHost 108.165.22.184:80>
  1941. ServerName projectmanagement.309marketing.com
  1942. ServerAlias www.projectmanagement.309marketing.com
  1943. DocumentRoot /home/webdesi2/public_html/hosted/309marketing.com/projectmanagement
  1944. ServerAdmin webmaster@projectmanagement.309marketing.com
  1945. UseCanonicalName Off
  1946. CustomLog /usr/local/apache/domlogs/projectmanagement.309marketing.com combined
  1947. CustomLog /usr/local/apache/domlogs/projectmanagement.309marketing.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1948. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1949. UserDir enabled webdesi2
  1950. <IfModule !mod_disable_suexec.c>
  1951. <IfModule !mod_ruid2.c>
  1952. SuexecUserGroup webdesi2 webdesi2
  1953. </IfModule>
  1954. </IfModule>
  1955. <IfModule mod_ruid2.c>
  1956. RUidGid webdesi2 webdesi2
  1957. </IfModule>
  1958. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/309marketing.com/projectmanagement/cgi-bin/
  1959.  
  1960. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1961.  
  1962. </VirtualHost>
  1963.  
  1964. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1965.  
  1966. <VirtualHost 108.165.22.184:80>
  1967. ServerName qdoba.webdesign309.com
  1968. ServerAlias www.qdoba.webdesign309.com
  1969. DocumentRoot /home/webdesi2/public_html/dev/qdoba
  1970. ServerAdmin webmaster@qdoba.webdesign309.com
  1971. UseCanonicalName On
  1972. CustomLog /usr/local/apache/domlogs/qdoba.webdesign309.com combined
  1973. CustomLog /usr/local/apache/domlogs/qdoba.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  1974. ## User webdesi2 # Needed for Cpanel::ApacheConf
  1975. UserDir enabled webdesi2
  1976. <IfModule !mod_disable_suexec.c>
  1977. <IfModule !mod_ruid2.c>
  1978. SuexecUserGroup webdesi2 webdesi2
  1979. </IfModule>
  1980. </IfModule>
  1981. <IfModule mod_ruid2.c>
  1982. RUidGid webdesi2 webdesi2
  1983. </IfModule>
  1984. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/qdoba/cgi-bin/
  1985.  
  1986. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  1987.  
  1988. </VirtualHost>
  1989.  
  1990. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  1991.  
  1992. <VirtualHost 108.165.22.184:80>
  1993. ServerName ramoslawoffice.webdesign309.com
  1994. ServerAlias www.ramoslawoffice.webdesign309.com ramoslawoffice.net www.ramoslawoffice.net
  1995. DocumentRoot /home/webdesi2/public_html/hosted/ramoslawoffice.net
  1996. ServerAdmin webmaster@ramoslawoffice.webdesign309.com
  1997. UseCanonicalName Off
  1998. CustomLog /usr/local/apache/domlogs/ramoslawoffice.webdesign309.com combined
  1999. CustomLog /usr/local/apache/domlogs/ramoslawoffice.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2000. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2001. UserDir enabled webdesi2
  2002. <IfModule !mod_disable_suexec.c>
  2003. <IfModule !mod_ruid2.c>
  2004. SuexecUserGroup webdesi2 webdesi2
  2005. </IfModule>
  2006. </IfModule>
  2007. <IfModule mod_ruid2.c>
  2008. RUidGid webdesi2 webdesi2
  2009. </IfModule>
  2010. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/ramoslawoffice.net/cgi-bin/
  2011.  
  2012. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2013.  
  2014. </VirtualHost>
  2015.  
  2016. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2017.  
  2018. <VirtualHost 108.165.22.184:80>
  2019. ServerName seven.webdesign309.com
  2020. ServerAlias www.seven.webdesign309.com
  2021. DocumentRoot /home/webdesi2/public_html/dev/seven
  2022. ServerAdmin webmaster@seven.webdesign309.com
  2023. UseCanonicalName On
  2024. CustomLog /usr/local/apache/domlogs/seven.webdesign309.com combined
  2025. CustomLog /usr/local/apache/domlogs/seven.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2026. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2027. UserDir enabled webdesi2
  2028. <IfModule !mod_disable_suexec.c>
  2029. <IfModule !mod_ruid2.c>
  2030. SuexecUserGroup webdesi2 webdesi2
  2031. </IfModule>
  2032. </IfModule>
  2033. <IfModule mod_ruid2.c>
  2034. RUidGid webdesi2 webdesi2
  2035. </IfModule>
  2036. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/seven/cgi-bin/
  2037.  
  2038. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2039.  
  2040. </VirtualHost>
  2041.  
  2042. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2043.  
  2044. <VirtualHost 108.165.22.184:80>
  2045. ServerName snydervillage.webdesign309.com
  2046. ServerAlias www.snydervillage.webdesign309.com
  2047. DocumentRoot /home/webdesi2/public_html/dev/snydervillage
  2048. ServerAdmin webmaster@snydervillage.webdesign309.com
  2049. UseCanonicalName On
  2050. CustomLog /usr/local/apache/domlogs/snydervillage.webdesign309.com combined
  2051. CustomLog /usr/local/apache/domlogs/snydervillage.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2052. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2053. UserDir enabled webdesi2
  2054. <IfModule !mod_disable_suexec.c>
  2055. <IfModule !mod_ruid2.c>
  2056. SuexecUserGroup webdesi2 webdesi2
  2057. </IfModule>
  2058. </IfModule>
  2059. <IfModule mod_ruid2.c>
  2060. RUidGid webdesi2 webdesi2
  2061. </IfModule>
  2062. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/snydervillage/cgi-bin/
  2063.  
  2064. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2065.  
  2066. </VirtualHost>
  2067.  
  2068. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2069.  
  2070. <VirtualHost 108.165.22.184:80>
  2071. ServerName snydervillagecom.webdesign309.com
  2072. ServerAlias www.snydervillage.com snydervillage.com www.snydervillagecom.webdesign309.com
  2073. DocumentRoot /home/webdesi2/public_html/hosted/snydervillage.com
  2074. ServerAdmin webmaster@snydervillagecom.webdesign309.com
  2075. UseCanonicalName Off
  2076. CustomLog /usr/local/apache/domlogs/snydervillagecom.webdesign309.com combined
  2077. CustomLog /usr/local/apache/domlogs/snydervillagecom.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2078. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2079. UserDir enabled webdesi2
  2080. <IfModule !mod_disable_suexec.c>
  2081. <IfModule !mod_ruid2.c>
  2082. SuexecUserGroup webdesi2 webdesi2
  2083. </IfModule>
  2084. </IfModule>
  2085. <IfModule mod_ruid2.c>
  2086. RUidGid webdesi2 webdesi2
  2087. </IfModule>
  2088. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/snydervillage.com/cgi-bin/
  2089.  
  2090. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2091.  
  2092. </VirtualHost>
  2093.  
  2094. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2095.  
  2096. <VirtualHost 108.165.22.184:80>
  2097. ServerName staatsservice.webdesign309.com
  2098. ServerAlias staatsservice.com www.staatsservice.webdesign309.com www.staatsservice.com
  2099. DocumentRoot /home/webdesi2/public_html/hosted/staatsservice.com
  2100. ServerAdmin webmaster@staatsservice.webdesign309.com
  2101. UseCanonicalName Off
  2102. CustomLog /usr/local/apache/domlogs/staatsservice.webdesign309.com combined
  2103. CustomLog /usr/local/apache/domlogs/staatsservice.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2104. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2105. UserDir enabled webdesi2
  2106. <IfModule !mod_disable_suexec.c>
  2107. <IfModule !mod_ruid2.c>
  2108. SuexecUserGroup webdesi2 webdesi2
  2109. </IfModule>
  2110. </IfModule>
  2111. <IfModule mod_ruid2.c>
  2112. RUidGid webdesi2 webdesi2
  2113. </IfModule>
  2114. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/staatsservice.com/cgi-bin/
  2115.  
  2116. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2117.  
  2118. </VirtualHost>
  2119.  
  2120. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2121.  
  2122. <VirtualHost 108.165.22.184:80>
  2123. ServerName staircrafters.webdesign309.com
  2124. ServerAlias www.staircrafters.webdesign309.com
  2125. DocumentRoot /home/webdesi2/public_html/dev/staircrafters
  2126. ServerAdmin webmaster@staircrafters.webdesign309.com
  2127. UseCanonicalName On
  2128. CustomLog /usr/local/apache/domlogs/staircrafters.webdesign309.com combined
  2129. CustomLog /usr/local/apache/domlogs/staircrafters.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2130. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2131. UserDir enabled webdesi2
  2132. <IfModule !mod_disable_suexec.c>
  2133. <IfModule !mod_ruid2.c>
  2134. SuexecUserGroup webdesi2 webdesi2
  2135. </IfModule>
  2136. </IfModule>
  2137. <IfModule mod_ruid2.c>
  2138. RUidGid webdesi2 webdesi2
  2139. </IfModule>
  2140. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/staircrafters/cgi-bin/
  2141.  
  2142. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2143.  
  2144. </VirtualHost>
  2145.  
  2146. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2147.  
  2148. <VirtualHost 108.165.22.184:80>
  2149. ServerName staircraftersillinois.webdesign309.com
  2150. ServerAlias www.staircraftersillinois.com staircraftersillinois.com www.staircraftersillinois.webdesign309.com
  2151. DocumentRoot /home/webdesi2/public_html/hosted/staircraftersillinois.com
  2152. ServerAdmin webmaster@staircraftersillinois.webdesign309.com
  2153. UseCanonicalName Off
  2154. CustomLog /usr/local/apache/domlogs/staircraftersillinois.webdesign309.com combined
  2155. CustomLog /usr/local/apache/domlogs/staircraftersillinois.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2156. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2157. UserDir enabled webdesi2
  2158. <IfModule !mod_disable_suexec.c>
  2159. <IfModule !mod_ruid2.c>
  2160. SuexecUserGroup webdesi2 webdesi2
  2161. </IfModule>
  2162. </IfModule>
  2163. <IfModule mod_ruid2.c>
  2164. RUidGid webdesi2 webdesi2
  2165. </IfModule>
  2166. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/staircraftersillinois.com/cgi-bin/
  2167.  
  2168. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2169.  
  2170. </VirtualHost>
  2171.  
  2172. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2173.  
  2174. <VirtualHost 108.165.22.184:80>
  2175. ServerName webmail.krugdental.com
  2176. ServerAlias www.webmail.krugdental.com
  2177. DocumentRoot /home/webdesi2/public_html/webmail
  2178. ServerAdmin webmaster@webmail.krugdental.com
  2179. UseCanonicalName On
  2180. CustomLog /usr/local/apache/domlogs/webmail.krugdental.com combined
  2181. CustomLog /usr/local/apache/domlogs/webmail.krugdental.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2182. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2183. UserDir enabled webdesi2
  2184. <IfModule !mod_disable_suexec.c>
  2185. <IfModule !mod_ruid2.c>
  2186. SuexecUserGroup webdesi2 webdesi2
  2187. </IfModule>
  2188. </IfModule>
  2189. <IfModule mod_ruid2.c>
  2190. RUidGid webdesi2 webdesi2
  2191. </IfModule>
  2192. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/webmail/cgi-bin/
  2193.  
  2194. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2195.  
  2196. </VirtualHost>
  2197.  
  2198. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2199.  
  2200. <VirtualHost 108.165.22.184:80>
  2201. ServerName wilsonagency.webdesign309.com
  2202. ServerAlias www.wilsonagency.com www.wilsonagency.webdesign309.com wilsonagency.com
  2203. DocumentRoot /home/webdesi2/public_html/hosted/wilsonagency.com
  2204. ServerAdmin webmaster@wilsonagency.webdesign309.com
  2205. UseCanonicalName Off
  2206. CustomLog /usr/local/apache/domlogs/wilsonagency.webdesign309.com combined
  2207. CustomLog /usr/local/apache/domlogs/wilsonagency.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2208. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2209. UserDir enabled webdesi2
  2210. <IfModule !mod_disable_suexec.c>
  2211. <IfModule !mod_ruid2.c>
  2212. SuexecUserGroup webdesi2 webdesi2
  2213. </IfModule>
  2214. </IfModule>
  2215. <IfModule mod_ruid2.c>
  2216. RUidGid webdesi2 webdesi2
  2217. </IfModule>
  2218. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/wilsonagency.com/cgi-bin/
  2219.  
  2220. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2221.  
  2222. </VirtualHost>
  2223.  
  2224. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2225.  
  2226. <VirtualHost 108.165.22.184:80>
  2227. ServerName winesnmore.webdesign309.com
  2228. ServerAlias www.winesnmore.webdesign309.com winesnmore.net www.winesnmore.net
  2229. DocumentRoot /home/webdesi2/public_html/hosted/winesnmore.net
  2230. ServerAdmin webmaster@winesnmore.webdesign309.com
  2231. UseCanonicalName Off
  2232. CustomLog /usr/local/apache/domlogs/winesnmore.webdesign309.com combined
  2233. CustomLog /usr/local/apache/domlogs/winesnmore.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2234. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2235. UserDir enabled webdesi2
  2236. <IfModule !mod_disable_suexec.c>
  2237. <IfModule !mod_ruid2.c>
  2238. SuexecUserGroup webdesi2 webdesi2
  2239. </IfModule>
  2240. </IfModule>
  2241. <IfModule mod_ruid2.c>
  2242. RUidGid webdesi2 webdesi2
  2243. </IfModule>
  2244. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/hosted/winesnmore.net/cgi-bin/
  2245.  
  2246. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2247.  
  2248. </VirtualHost>
  2249.  
  2250. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2251.  
  2252. <VirtualHost 108.165.22.184:80>
  2253. ServerName wordpress.webdesign309.com
  2254. ServerAlias www.wordpress.webdesign309.com
  2255. DocumentRoot /home/webdesi2/public_html/dev/wordpress
  2256. ServerAdmin webmaster@wordpress.webdesign309.com
  2257. UseCanonicalName On
  2258. CustomLog /usr/local/apache/domlogs/wordpress.webdesign309.com combined
  2259. CustomLog /usr/local/apache/domlogs/wordpress.webdesign309.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2260. ## User webdesi2 # Needed for Cpanel::ApacheConf
  2261. UserDir enabled webdesi2
  2262. <IfModule !mod_disable_suexec.c>
  2263. <IfModule !mod_ruid2.c>
  2264. SuexecUserGroup webdesi2 webdesi2
  2265. </IfModule>
  2266. </IfModule>
  2267. <IfModule mod_ruid2.c>
  2268. RUidGid webdesi2 webdesi2
  2269. </IfModule>
  2270. ScriptAlias /cgi-bin/ /home/webdesi2/public_html/dev/wordpress/cgi-bin/
  2271.  
  2272. Include "/usr/local/apache/conf/userdata/std/2/webdesi2/*.conf"
  2273.  
  2274. </VirtualHost>
  2275.  
  2276. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2277.  
  2278. <VirtualHost 108.165.22.184:80>
  2279. ServerName nationalstuttering.westutter.org
  2280. ServerAlias www.nationalstutteringassociation.org www.nationalstuttering.westutter.org nationalstutteringassociation.org
  2281. DocumentRoot /home/westutte/public_html/nationalstutteringassociation.org
  2282. ServerAdmin webmaster@nationalstuttering.westutter.org
  2283. UseCanonicalName Off
  2284. CustomLog /usr/local/apache/domlogs/nationalstuttering.westutter.org combined
  2285. CustomLog /usr/local/apache/domlogs/nationalstuttering.westutter.org-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2286. ## User westutte # Needed for Cpanel::ApacheConf
  2287. UserDir enabled westutte
  2288. <IfModule !mod_disable_suexec.c>
  2289. <IfModule !mod_ruid2.c>
  2290. SuexecUserGroup westutte westutte
  2291. </IfModule>
  2292. </IfModule>
  2293. <IfModule mod_ruid2.c>
  2294. RUidGid westutte westutte
  2295. </IfModule>
  2296. ScriptAlias /cgi-bin/ /home/westutte/public_html/nationalstutteringassociation.org/cgi-bin/
  2297.  
  2298. Include "/usr/local/apache/conf/userdata/std/2/westutte/*.conf"
  2299.  
  2300. </VirtualHost>
  2301.  
  2302. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2303.  
  2304. <VirtualHost 108.165.22.184:80>
  2305. ServerName nsastutter.westutter.org
  2306. ServerAlias www.nsastutter.westutter.org nsastutter.org www.nsastutter.org
  2307. DocumentRoot /home/westutte/public_html/nsastutter.org
  2308. ServerAdmin webmaster@nsastutter.westutter.org
  2309. UseCanonicalName Off
  2310. CustomLog /usr/local/apache/domlogs/nsastutter.westutter.org combined
  2311. CustomLog /usr/local/apache/domlogs/nsastutter.westutter.org-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2312. ## User westutte # Needed for Cpanel::ApacheConf
  2313. UserDir enabled westutte
  2314. <IfModule !mod_disable_suexec.c>
  2315. <IfModule !mod_ruid2.c>
  2316. SuexecUserGroup westutte westutte
  2317. </IfModule>
  2318. </IfModule>
  2319. <IfModule mod_ruid2.c>
  2320. RUidGid westutte westutte
  2321. </IfModule>
  2322. ScriptAlias /cgi-bin/ /home/westutte/public_html/nsastutter.org/cgi-bin/
  2323.  
  2324. Include "/usr/local/apache/conf/userdata/std/2/westutte/*.conf"
  2325.  
  2326. </VirtualHost>
  2327.  
  2328. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2329.  
  2330. <VirtualHost 108.165.22.184:80>
  2331. ServerName westutter.westutter.org
  2332. ServerAlias westutter.com www.westutter.westutter.org www.westutter.com
  2333. DocumentRoot /home/westutte/public_html/westutter.com
  2334. ServerAdmin webmaster@westutter.westutter.org
  2335. UseCanonicalName Off
  2336. CustomLog /usr/local/apache/domlogs/westutter.westutter.org combined
  2337. CustomLog /usr/local/apache/domlogs/westutter.westutter.org-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  2338. ## User westutte # Needed for Cpanel::ApacheConf
  2339. UserDir enabled westutte
  2340. <IfModule !mod_disable_suexec.c>
  2341. <IfModule !mod_ruid2.c>
  2342. SuexecUserGroup westutte westutte
  2343. </IfModule>
  2344. </IfModule>
  2345. <IfModule mod_ruid2.c>
  2346. RUidGid westutte westutte
  2347. </IfModule>
  2348. ScriptAlias /cgi-bin/ /home/westutte/public_html/westutter.com/cgi-bin/
  2349.  
  2350. Include "/usr/local/apache/conf/userdata/std/2/westutte/*.conf"
  2351.  
  2352. </VirtualHost>
  2353.  
  2354. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
  2355.  
  2356. # SSL
  2357.  
  2358.  
  2359. # CPANEL/WHM/WEBMAIL/WEBDISK/AUTOCONFIG PROXY SUBDOMAINS
  2360.  
  2361. <VirtualHost 108.165.22.184:80 127.0.0.1:80 *>
  2362. ServerName server.webdesign309.com
  2363.  
  2364. ServerAlias cpanel.* whm.* webmail.* webdisk.* autodiscover.* autoconfig.*
  2365.  
  2366. DocumentRoot /usr/local/apache/htdocs
  2367. ServerAdmin sdsanders@gmail.com
  2368. <IfModule mod_security2.c>
  2369. SecRuleEngine Off
  2370. </IfModule>
  2371. RewriteEngine On
  2372. <IfModule core.c>
  2373. SSLProxyEngine On
  2374. </IfModule>
  2375. RewriteCond %{HTTP_HOST} ^cpanel\.
  2376. RewriteCond %{HTTPS} on
  2377. RewriteRule ^/(.*) https://127.0.0.1:2083/$1 [P]
  2378. RewriteCond %{HTTP_HOST} ^webmail\.
  2379. RewriteCond %{HTTPS} on
  2380. RewriteRule ^/(.*) https://127.0.0.1:2096/$1 [P]
  2381. RewriteCond %{HTTP_HOST} ^whm\.
  2382. RewriteCond %{HTTPS} on
  2383. RewriteRule ^/(.*) https://127.0.0.1:2087/$1 [P]
  2384. RewriteCond %{HTTP_HOST} ^webdisk\.
  2385. RewriteCond %{HTTPS} on
  2386. RewriteRule ^/(.*) https://127.0.0.1:2078/$1 [P]
  2387. RewriteCond %{HTTP_HOST} ^cpanel\.
  2388. RewriteRule ^/(.*) http://127.0.0.1:2082/$1 [P]
  2389. RewriteCond %{HTTP_HOST} ^webmail\.
  2390. RewriteRule ^/(.*) http://127.0.0.1:2095/$1 [P]
  2391. RewriteCond %{HTTP_HOST} ^whm\.
  2392. RewriteRule ^/(.*) http://127.0.0.1:2086/$1 [P]
  2393. RewriteCond %{HTTP_HOST} ^webdisk\.
  2394. RewriteRule ^/(.*) http://127.0.0.1:2077/$1 [P]
  2395.  
  2396. RewriteCond %{HTTP_HOST} ^autodiscover\.
  2397. RewriteRule ^[^?]*(\?.*)? http://127.0.0.1/cgi-sys/autodiscover.cgi [P]
  2398. RewriteCond %{HTTP_HOST} ^autoconfig\.
  2399. RewriteRule ^[^?]*(\?.*)? http://127.0.0.1/cgi-sys/autoconfig.cgi [P]
  2400.  
  2401. UseCanonicalName Off
  2402. </VirtualHost>
  2403.  
  2404.  
  2405. Include "/usr/local/apache/conf/includes/post_virtualhost_global.conf"
  2406. Include "/usr/local/apache/conf/includes/post_virtualhost_2.conf"
  2407.  
  2408.  
  2409. # DO NOT EDIT. AUTOMATICALLY GENERATED. IF YOU NEED TO MAKE A CHANGE PLEASE USE THE INCLUDE FILES.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement