Blob Blame History Raw
#conf file for dedicated server installs of Zikula. 
#	v0.1 David Nalley <david@gnsa.us>  - Initial consolidation of .htaccess files from Zikulasource
#
Alias /zikula /usr/share/zikula
<Directory /usr/share/zikula/>
   order deny,allow
   allow from all
</Directory>

<Directory /usr/share/zikula/install/>
	Options -Indexes
	SetEnvIf Request_URI "\.css$" object_is_css=css
	SetEnvIf Request_URI "\.js$" object_is_js=js
	SetEnvIf Request_URI "\.jpg$" object_is_jpg=jpg
	SetEnvIf Request_URI "\.gif$" object_is_gif=gif
	SetEnvIf Request_URI "\.png$" object_is_png=png
	SetEnvIf Request_URI "\.tif$" object_is_tif=tif
	Order deny,allow
	Deny from all
	Allow from env=object_is_css
	Allow from env=object_is_js
	Allow from env=object_is_jpg
	Allow from env=object_is_gif
	Allow from env=object_is_png
	Allow from env=object_is_tif
</Directory>

<Directory /usr/share/zikula/system/>
	Options -Indexes
	SetEnvIf Request_URI "\.css$" object_is_css=css
	SetEnvIf Request_URI "\.js$" object_is_js=js
	SetEnvIf Request_URI "\.jpg$" object_is_jpg=jpg
	SetEnvIf Request_URI "\.gif$" object_is_gif=gif
	SetEnvIf Request_URI "\.png$" object_is_png=png
	SetEnvIf Request_URI "\.tif$" object_is_tif=tif
	SetEnvIf Request_URI "\.swf$" object_is_swf=swf
	Order deny,allow
	Deny from all
	Allow from env=object_is_css
	Allow from env=object_is_js
	Allow from env=object_is_jpg
	Allow from env=object_is_gif
	Allow from env=object_is_png
	Allow from env=object_is_tif
	Allow from env=object_is_swf
</Directory>

<Directory /usr/share/zikula/modules/>
	Options -Indexes
	SetEnvIf Request_URI "\.css$" object_is_css=css
	SetEnvIf Request_URI "\.js$" object_is_js=js
	SetEnvIf Request_URI "\.jpg$" object_is_jpg=jpg
	SetEnvIf Request_URI "\.gif$" object_is_gif=gif
	SetEnvIf Request_URI "\.png$" object_is_png=png
	SetEnvIf Request_URI "\.tif$" object_is_tif=tif
	SetEnvIf Request_URI "\.swf$" object_is_swf=swf
	SetEnvIf Request_URI "\.flv$" object_is_flv=flv
	SetEnvIf Request_URI "\.ico$" object_is_ico=ico
	Order deny,allow
	Deny from all
	Allow from env=object_is_css
	Allow from env=object_is_js
	Allow from env=object_is_jpg
	Allow from env=object_is_gif
	Allow from env=object_is_png
	Allow from env=object_is_tif
	Allow from env=object_is_swf
	Allow from env=object_is_flv
	Allow from env=object_is_ico
</Directory>

<Directory /usr/share/zikula/config/>
        Options -Indexes
	SetEnvIf Request_URI "\.css$" object_is_css=css
	SetEnvIf Request_URI "\.js$" object_is_js=js
	Order deny,allow
	Deny from all
	Allow from env=object_is_css
	Allow from env=object_is_js
</Directory>

<Directory /usr/share/zikula/includes/>
	Options -Indexes
	Order deny,allow
	Deny from all
</Directory>

<Directory /usr/share/zikula/system/Theme/pnincludes/>
	Options -Indexes
	SetEnvIf Request_URI "\.html$" object_is_html=html
	Allow from env=object_is_html
</Directory>

<Directory /var/lib/zikula/pnTemp/>
	Options -Indexes
	SetEnvIf Request_URI "\.css$" object_is_css=css
	SetEnvIf Request_URI "\.js$" object_is_js=js
	Order deny,allow
	Deny from all
	Allow from env=object_is_css
	Allow from env=object_is_js
</Directory>