Add configs to readme

This commit is contained in:
dave 2014-08-29 20:11:58 -07:00
parent 24d3300cdc
commit 16acddfea9
1 changed files with 39 additions and 1 deletions

View File

@ -11,4 +11,42 @@ A python3 web app to record internet radio streams and present them in a podcast
- feedgen
- uwsgi
- mkvmerge
- avconv
- avconv
### Uwsgi config
Something like:
[uwsgi]
uid = streamrecord
pid = streamrecord
plugins = python3
touch-reload = /home/streamrecord/app/app.py
chdir = /home/streamrecord/app/
wsgi-file = /home/streamrecord/app/app.py
callable = application
master = true
processes = 1
socket = 127.0.0.1:3330
pidfile = /tmp/streamrecord.pid
enable-threads = true
no-threads-wait = true
die-on-term = true
### Nginx config
Something like:
server {
listen 30000;
listen [::]:30000 ipv6only=on;
include uwsgi_params;
access_log /var/log/nginx/stremrecord.log;
location / {
uwsgi_pass 127.0.0.1:3330;
}
location /streamrecord/static/ {
autoindex on;
alias /home/streamrecord/app/static/;
}
}