Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. <VirtualHost 185.80.222.53:80>
  2. ServerName pigeonpl.com
  3. ServerAlias www.pigeonpl.com
  4. DocumentRoot /home/pigeon/public_html/current/web
  5. DirectoryIndex app.php app_dev.php
  6. ServerAdmin webmaster@pigeonpl.com
  7. UseCanonicalName Off
  8. CustomLog /usr/local/apache/domlogs/pigeonpl.com combined
  9. <IfModule log_config_module>
  10. <IfModule logio_module>
  11. CustomLog /usr/local/apache/domlogs/pigeonpl.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
  12. </IfModule>
  13. </IfModule>
  14. ## User pigeon # Needed for Cpanel::ApacheConf
  15. <IfModule userdir_module>
  16. <IfModule !mpm_itk.c>
  17. <IfModule !ruid2_module>
  18. UserDir enabled pigeon
  19. </IfModule>
  20. </IfModule>
  21. </IfModule>
  22.  
  23. # Enable backwards compatible Server Side Include expression parser for Apache versions >= 2.4.
  24. # To selectively use the newer Apache 2.4 expression parser, disable SSILegacyExprParser in
  25. # the user's .htaccess file. For more information, please read:
  26. # http://httpd.apache.org/docs/2.4/mod/mod_include.html#ssilegacyexprparser
  27. <IfModule include_module>
  28. <Directory "/home/pigeon/public_html/current/web">
  29. Options Indexes FollowSymLinks MultiViews
  30. AllowOverride All
  31. Require all granted
  32. SSILegacyExprParser On
  33. </Directory>
  34. </IfModule>
  35.  
  36. <IfModule suphp_module>
  37. suPHP_UserGroup pigeon pigeon
  38. </IfModule>
  39. <IfModule !mod_disable_suexec.c>
  40. <IfModule !mod_ruid2.c>
  41. SuexecUserGroup pigeon pigeon
  42. </IfModule>
  43. </IfModule>
  44. <IfModule ruid2_module>
  45. RMode config
  46. RUidGid pigeon pigeon
  47. </IfModule>
  48. <IfModule mpm_itk.c>
  49. # For more information on MPM ITK, please read:
  50. # http://mpm-itk.sesse.net/
  51. AssignUserID pigeon pigeon
  52. </IfModule>
  53.  
  54. <IfModule alias_module>
  55. ScriptAlias /cgi-bin/ /home/pigeon/public_html/cgi-bin/
  56. </IfModule>
  57.  
  58. # To customize this VirtualHost use an include file at the following location
  59. # Include "/usr/local/apache/conf/userdata/std/2_4/pigeon/pigeonpl.com/*.conf"
  60. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement