2021-01-10 17:01:21 +00:00
|
|
|
Running the web server
|
|
|
|
======================
|
|
|
|
|
|
|
|
Once Supysonic is installed and configured, you'll have to start its web server
|
|
|
|
for the clients to be able to access the music. Here you have several options,
|
|
|
|
whether you want to run it as independant process(es), then possibly putting it
|
|
|
|
behind a reverse proxy, or running it as a WSGI application within Apache.
|
|
|
|
|
2021-01-16 15:09:53 +00:00
|
|
|
You'll find some common (and less common) deployment option below:
|
2021-01-10 17:01:21 +00:00
|
|
|
|
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 2
|
|
|
|
|
|
|
|
wsgi-standalone
|
|
|
|
apache
|
2021-01-16 15:09:53 +00:00
|
|
|
other
|
|
|
|
|
|
|
|
As Supysonic is a WSGI application, you have numerous deployment options
|
|
|
|
available to you. If you want to deploy it to a WSGI server not listed here,
|
|
|
|
look up the server documentation about how to use a WSGI app with it. When
|
|
|
|
setting one of those, you'll want to call the :func:`create_application` factory
|
|
|
|
function from module :mod:`supysonic.web`.
|