Advertisement
Guest User

apache conf

a guest
Dec 23rd, 2014
9
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName mywebsite.com
  3. Redirect permanent / http://www.mywebsite.com/
  4. </VirtualHost>
  5.  
  6. <VirtualHost *:80>
  7. # The ServerName directive sets the request scheme, hostname and port that
  8. # the server uses to identify itself. This is used when creating
  9. # redirection URLs. In the context of virtual hosts, the ServerName
  10. # specifies what hostname must appear in the request's Host: header to
  11. # match this virtual host. For the default virtual host (this file) this
  12. # value is not decisive as it is used as a last resort host regardless.
  13. # However, you must set it for any further virtual host explicitly.
  14. #ServerName www.example.com
  15.  
  16.  
  17. ServerName www.mywebsite.com
  18. # ServerAlias mywebsite.com
  19.  
  20. ServerAdmin webmaster@localhost
  21. DocumentRoot /var/www/html
  22.  
  23. # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
  24. # error, crit, alert, emerg.
  25. # It is also possible to configure the loglevel for particular
  26. # modules, e.g.
  27. #LogLevel info ssl:warn
  28.  
  29. ErrorLog ${APACHE_LOG_DIR}/error.log
  30. CustomLog ${APACHE_LOG_DIR}/access.log combined
  31.  
  32. # For most configuration files from conf-available/, which are
  33. # enabled or disabled at a global level, it is possible to
  34. # include a line for only one particular virtual host. For example the
  35. # following line enables the CGI configuration for this host only
  36. # after it has been globally disabled with "a2disconf".
  37. #Include conf-available/serve-cgi-bin.conf
  38. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement