31 lines
892 B
Plaintext
31 lines
892 B
Plaintext
|
# SAMPLE CONFIG SNIPPETS FOR APACHE WEB SERVER
|
||
|
|
||
|
Alias @BASE_URL@ "@datarootdir@"
|
||
|
|
||
|
<Directory "@datarootdir@">
|
||
|
AllowOverride None
|
||
|
Order allow,deny
|
||
|
Allow from all
|
||
|
#
|
||
|
# Use the same value as defined in nagios.conf
|
||
|
#
|
||
|
AuthName "Nagios Access"
|
||
|
AuthType Basic
|
||
|
AuthUserFile /usr/local/nagios/etc/htpasswd.users
|
||
|
Require valid-user
|
||
|
<IfModule mod_rewrite.c>
|
||
|
# Turn on URL rewriting
|
||
|
RewriteEngine On
|
||
|
Options symLinksIfOwnerMatch
|
||
|
# Installation directory
|
||
|
RewriteBase @BASE_URL@/
|
||
|
# Protect application and system files from being viewed
|
||
|
RewriteRule "^(?:application|modules|system)/" - [F]
|
||
|
# Allow any files or directories that exist to be displayed directly
|
||
|
RewriteCond "%{REQUEST_FILENAME}" !-f
|
||
|
RewriteCond "%{REQUEST_FILENAME}" !-d
|
||
|
# Rewrite all other URLs to index.php/URL
|
||
|
RewriteRule "^.*$" "index.php/$0" [PT]
|
||
|
</IfModule>
|
||
|
</Directory>
|