You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
779 B
33 lines
779 B
|
21 years ago
|
|
||
|
|
# - Think about security.
|
||
|
|
# - can documentation contain "evil" links ?
|
||
|
|
#
|
||
|
|
# - docs should be browsable without httpd
|
||
|
|
# (file:%prefix/share/openpkg/docs/index.html)
|
||
|
|
# - mod_alias included by default ?
|
||
|
|
# - move %prefix/share/openpkg/docs/index.html to %prefix/doc ?
|
||
|
|
|
||
|
|
# add the following line to httpd.conf:
|
||
|
|
# include @l_prefix@/share/openpkg/docs/odoc.apache
|
||
|
|
|
||
|
|
# <openpkg @l_prefix@>
|
||
|
|
#
|
||
|
|
Alias @l_prefix@/share/openpkg/docs @l_prefix@/share/openpkg/docs
|
||
|
|
<Directory @l_prefix@/share/openpkg/docs>
|
||
|
|
Options None
|
||
|
|
AllowOverride None
|
||
|
|
Order allow,deny
|
||
|
|
Allow from all
|
||
|
|
</Directory>
|
||
|
|
|
||
|
|
Alias @l_prefix@/doc @l_prefix@/doc
|
||
|
|
<Directory @l_prefix@/doc>
|
||
|
|
Options Indexes FollowSymLinks
|
||
|
|
AllowOverride None
|
||
|
|
Order allow,deny
|
||
|
|
Allow from all
|
||
|
|
</Directory>
|
||
|
|
#
|
||
|
|
# </openpkg>
|
||
|
|
|