Guest User

Untitled

a guest
Feb 18th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. NameVirtualHost 127.0.0.1:8082
  2. <VirtualHost 127.0.0.1:8082>
  3. ServerName tools.sitename.ru
  4. RPAFenable On
  5. RPAFsethostname Off
  6. RPAFproxy_ips 127.0.0.1
  7. # RPAFheader X-Real-IP
  8. # AllowOverride All
  9. DocumentRoot /var/www/tools.sitename
  10.  
  11. DirectoryIndex index.php index.html default.asp index.cgi
  12. ErrorLog /var/log/httpd/tools.sitename.error.log
  13. CustomLog /var/log/httpd/tools.sitename.access.log common
  14.  
  15. <Location /server-info>
  16. SetHandler server-info
  17. Order deny,allow
  18. Deny from all
  19. Allow from all
  20. </Location>
  21.  
  22. <Location /server-status>
  23. SetHandler server-status
  24. Order deny,allow
  25. Deny from all
  26. Allow from all
  27. </Location>
  28.  
  29. <Directory />
  30. Options FollowSymLinks
  31. AllowOverride All
  32. </Directory>
  33. </VirtualHost>
  34.  
  35. <Location "/">
  36. Order Deny,Allow
  37. Deny from all
  38. Allow from all
  39. </Location>
Add Comment
Please, Sign In to add comment