1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-09 11:42:16 +00:00

Sorting / Updating README

This commit is contained in:
spl0k 2015-04-05 16:20:12 +02:00
parent 62642cc079
commit 7feb18fb93
6 changed files with 10 additions and 10 deletions

View File

@ -1 +1,3 @@
include cgi-bin/*
include config.sample
include README.md include README.md

View File

@ -71,20 +71,18 @@ Running the application
It is possible to run Supysonic as a standalone server, but it is only recommended to do so if you are It is possible to run Supysonic as a standalone server, but it is only recommended to do so if you are
hacking on the source. A standalone won't be able to serve more than one request at a time. hacking on the source. A standalone won't be able to serve more than one request at a time.
To start the server, just run the `debug_server.py` script. To start the server, just run the `cgi-bin/server.py` script.
python debug_server.py python cgi-bin/server.py
By default, it will listen on the loopback interface (127.0.0.1) on port 5000, but you can specify another address on By default, it will listen on the loopback interface (127.0.0.1) on port 5000, but you can specify another address on
the command line, for instance on all the IPv6 interfaces: the command line, for instance on all the IPv6 interfaces:
python debug_server.py :: python cgi-bin/server.py ::
### As an Apache WSGI application ### As an Apache WSGI application
Supysonic can run as a WSGI application with the `supysonic.wsgi` file. But first you need to edit this Supysonic can run as a WSGI application with the `cgi-bin/supysonic.wsgi` file.
file to set the path to the Supysonic app folder.
To run it within an Apache2 server, first you need to install the WSGI module and enable it. To run it within an Apache2 server, first you need to install the WSGI module and enable it.
apt-get install libapache2-mod-wsgi apt-get install libapache2-mod-wsgi
@ -92,8 +90,8 @@ To run it within an Apache2 server, first you need to install the WSGI module an
Next, edit the Apache configuration to load the application. Here's a basic example of what it looks like: Next, edit the Apache configuration to load the application. Here's a basic example of what it looks like:
WSGIScriptAlias /supysonic /path/to/supysonic/supysonic.wsgi WSGIScriptAlias /supysonic /path/to/supysonic/cgi-bin/supysonic.wsgi
<Directory /path/to/supysonic> <Directory /path/to/supysonic/cgi-bin>
WSGIApplicationGroup %{GLOBAL} WSGIApplicationGroup %{GLOBAL}
WSGIPassAuthorization On WSGIPassAuthorization On
Order deny,allow Order deny,allow
@ -111,8 +109,8 @@ With that kind of configuration, the server address will look like *http://serve
### Other options ### Other options
If you use another HTTP server, such as *nginx* or *lighttpd*, or prefer to use FastCGI or CGI over WSGI, If you use another HTTP server, such as *nginx* or *lighttpd*, or prefer to use FastCGI or CGI over WSGI,
FastCGI and CGI scripts are also provided, respectively as `supysonic.fcgi` and `supysonic.cgi`. As with FastCGI and CGI scripts are also providedin the `cgi-bin` folder, respectively as `supysonic.fcgi` and `supysonic.cgi`.
WSGI, you might need to edit those file to suit your system configuration. As with WSGI, you might need to edit those file to suit your system configuration.
Here are some quick docs on how to configure your server for [FastCGI](http://flask.pocoo.org/docs/deploying/fastcgi/) Here are some quick docs on how to configure your server for [FastCGI](http://flask.pocoo.org/docs/deploying/fastcgi/)
or [CGI](http://flask.pocoo.org/docs/deploying/cgi/). or [CGI](http://flask.pocoo.org/docs/deploying/cgi/).