File: apache-wsgi.conf

package info (click to toggle)
fookebox 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 852 kB
  • sloc: python: 1,559; sh: 42; makefile: 14
file content (17 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<IfModule mod_wsgi.c>
	WSGIScriptAlias /fookebox /etc/fookebox/fookebox.wsgi

	WSGIDaemonProcess fookebox
	WSGIProcessGroup fookebox

	<Location /fookebox>
		Order deny,allow
		Allow from all
	</Location>

	<Location /fookebox/schedule>
		Order deny,allow
		Deny from all
		Allow from localhost
	</Location>
</IfModule>