docs: Add chapter on upgrading, inc. system Python upgrades [#972].
[mediagoblin.git] / paste.ini
index 77364c0929c973efdcb9a578eebe621fe3a86820..cbc37bba210feb2d7dc02ec1c81aaf55321a6478 100644 (file)
--- a/paste.ini
+++ b/paste.ini
@@ -52,14 +52,14 @@ debug = false
 # The server that is run by default.
 # By default, should only be accessable locally
 [server:main]
-use = egg:mediagoblin#paste_server_selector
+use = egg:waitress#main
 host = 127.0.0.1
 port = 6543
-# Gunicorn settings. See http://docs.gunicorn.org/en/19.0/settings.html
-# for more information about configuring Gunicorn
-proc_name = gmg
-reload = true
-accesslog = -
+# Gunicorn settings. See http://docs.gunicorn.org/en/19.0/settings.html
+# for more information about configuring Gunicorn
+proc_name = gmg
+reload = true
+accesslog = -
 
 #######################
 # Helper server configs
@@ -70,17 +70,11 @@ accesslog = -
 # Use this if you want to run on port 6543 and have MediaGoblin be
 # viewable externally
 [server:broadcast]
-use = egg:Paste#http
+use = egg:waitress#main
 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
+use = egg:waitress#main
 host = %(http_host)s
 port = %(http_port)s