| 123456789101112131415161718192021222324252627282930313233 |
- # - 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>
|