File: apache.conf

package info (click to toggle)
supysonic 0.7.2%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,716 kB
  • sloc: python: 9,315; sql: 1,029; sh: 25; makefile: 19; javascript: 6
file content (17 lines) | stat: -rw-r--r-- 542 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Something like this can be used to run supysonic with `mod_wsgi`. You will
# need to create a `supysonic` user beforehand though.

<VirtualHost *:80>
  ServerName supysonic.fqdn.net
  DocumentRoot /usr/share/supysonic

  WSGIDaemonProcess supysonic user=supysonic group=supysonic threads=3
  WSGIScriptAlias / /usr/share/doc/supysonic/examples/supysonic.wsgi

  <Directory /usr/share/supysonic>
    WSGIApplicationGroup %{GLOBAL}
    WSGIPassAuthorization On
    Options FollowSymLinks
    Require all granted
  </Directory>
</VirtualHost>