From f3c1b6ff6d0faebd6eff272849babe26851b423b Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Fri, 15 Aug 2014 22:35:22 +0300 Subject: [PATCH] Restore different server options. --- paste.ini | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/paste.ini b/paste.ini index b859251e..0cb01408 100644 --- a/paste.ini +++ b/paste.ini @@ -59,3 +59,27 @@ port = 6543 proc_name = gmg reload = true accesslog = - + +####################### +# Helper server configs +# --------------------- +# If you are configuring the paste config manually, you can remove +# these. + +# Use this if you want to run on port 6543 and have MediaGoblin be +# viewable externally +[server:broadcast] +use = egg:Paste#http +host = 0.0.0.0 +port = 6543 + +# Use this if you want to connect via fastcgi +[server:fcgi] +use = egg:flup#fcgi_fork +host = %(fcgi_host)s +port = %(fcgi_port)s + +[server:http] +use = egg:Paste#http +host = %(http_host)s +port = %(http_port)s -- 2.25.1