Advertisement
Guest User

Untitled

a guest
Apr 7th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. SetEnv RAILS_ENV production
  2.  
  3. RewriteEngine On
  4.  
  5. # Rewrite index to check for static
  6. RewriteRule ^/$ /index.html [QSA]
  7.  
  8. # Rewrite to check for Rails cached page
  9. RewriteRule ^([^.]+)$ $1.html [QSA]
  10.  
  11. DocumentRoot /var/www/redmine/public/
  12.  
  13. <Directory /var/www/redmine/public/>
  14. Options +FollowSymLinks +MultiViews
  15. AllowOverride all
  16. Order allow,deny
  17. Allow from all
  18. </Directory>
  19.  
  20. Alias /Microsoft-Server-ActiveSync /var/www/z-push
  21. <Directory "/usr/share/z-push">
  22. Options Indexes FollowSymLinks MultiViews
  23. AllowOverride all
  24. Order allow,deny
  25. Allow from all
  26. </Directory>
  27.  
  28. php_flag magic_quotes_gpc off
  29. php_flag register_globals off
  30. php_flag magic_quotes_runtime off
  31. php_flag short_open_tag on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement