File: apache.conf

package info (click to toggle)
simplesamlphp 1.13.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 11,092 kB
  • sloc: php: 65,106; xml: 629; python: 376; sh: 193; perl: 185; makefile: 43
file content (16 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# simpleSAMLphp example Apache config snippet.
# To include this in your Apache configuration:
# Apache 2.2 and earlier:
#   ln -s /etc/apache2/conf-available/simplesamlphp.conf /etc/apache2/conf.d/simplesamlphp.conf
# Apache 2.4 and later:
#   a2enconf simplesamlphp

Alias /simplesamlphp /usr/share/simplesamlphp/www

<Directory /usr/share/simplesamlphp/www/>
	Order allow,deny
	Allow from all
#	Apache 2.4-style:
#	Require all granted
</Directory>