This repository has been archived on 2019-08-07. You can view files and clone it, but cannot push or open issues or pull requests.
copr-dani-qgis/qgis-mapserver-httpd.conf
Volker Fröhlich 14f808f149 Use system Qextserialport and update httpd config
- httpd config now works with 2.4 (BZ#871471)
- Un-bundle Qextserialport
2012-11-08 00:58:56 +01:00

29 lines
560 B
Plaintext

# This configuration is intended as an example.
# It is not meant for productive use.
RewriteEngine on
RewriteRule ^/wms/(.+)$ /qgis/qgis_mapserv.fcgi?map=/var/www/wms/$1.qgs [QSA,PT]
ScriptAlias /qgis/ "/usr/libexec/qgis/"
<Directory "/usr/libexec/qgis/">
Options ExecCGI
Options FollowSymLinks
<IfModule mod_authz_core.c>
# Apache 2.4
Require local
</IfModule>
<IfModule !mod_authz_core.c>
# Apache 2.2
Order deny,allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
</IfModule>
</Directory>