aboutsummaryrefslogtreecommitdiffstats
path: root/paste.ini
Commit message (Collapse)AuthorAgeFilesLines
* Set static path relative to codebase.Ben Sturmfels2021-09-171-1/+0
| | | | This help a Guix package to locate the basic static assets.
* Removing flup and fastcgi from documentationMichael Lynch2020-04-141-6/+0
| | | | | | flup is not supported on Python3, so MediaGoblin doesn't have a supported way to enable FastCGI support. This change removes all references to flup and FastCGI and updates deployment instructions to use simple HTTP forwarding with nginx to access mediagoblin's non-static resources.
* Switch from Paste for serving to WaitressChristopher Allan Webber2016-02-191-9/+10
| | | | | Incredibly, it looks like none of our documentation has to change taking this route...!
* Bring back the ascii art goblin! For python 2 anyway.Christopher Allan Webber2014-10-101-2/+1
| | | | This does a "friendly" fallback where it skips the middleware on python 3.
* Move paste.ini, lazystarter.sh back to the right placeChristopher Allan Webber2014-10-101-0/+86
|
* Most of the way to having a desirable `./configure && make` setupChristopher Allan Webber2014-10-101-86/+0
| | | | | | | | Tries to simplify a lot of the configure code. This is mostly because I found what I expected the previous configure setup to do wasn't quite what it was doing. Also supports a --with-python3 option.
* Temporarily disabling the mediagoblin errors middlewareChristopher Allan Webber2014-09-151-1/+2
| | | | We don't have paste (core) in py3, so....
* Restore different server options.Berker Peksag2014-08-151-0/+24
|
* Remove Paste#http, Paste#urlmap and Paste#static dependencies.Berker Peksag2014-06-291-54/+12
| | | | | | | Changes: * Paste#http -> Gunicorn * Paste#urlmap and Paste#static -> werkzeug.wsgi.SharedDataMiddleware
* Oh right, actually mount /plugin_static/ :)Christopher Allan Webber2013-05-231-0/+1
|
* Work towards getting plugin static linking/serving to workChristopher Allan Webber2013-05-231-0/+5
| | | | | | | | | - add link_plugin_assets. For now, incorrectly running from ./bin/gmg theme assetlink... uh, will fix ;) - Update paste and config_spec.ini configs to handle the locations and serving of the plugins' static resources This commit sponsored by Marko Dimjašević. Thank you!
* Remove the last traces of beaker.Elrond2013-04-091-9/+0
| | | | | | | | There were still some traces of beaker around: - docs: replaced by reference to itsdangerous. - paste configs: Wiped away. - config_spec.ini: wiped. - test_mgoblin_app.ini: also wiped.
* Remove beaker stuff from the code.Brett Smith2013-03-241-1/+1
| | | | This is all obsoleted by It's Dangerous.
* Serve and setup the mediagoblin "linked theme" assets directoryChristopher Allan Webber2012-07-141-0/+6
|
* Create a default logging configElrond2012-01-091-0/+22
| | | | | | | | | | | paste uses paste.ini to configure python's logging module. Until now, there was NO config, not even a useful default one. This means: any messages went away unseen. Not good. The new default logs everything to stderr at level INFO and higher. Maybe not the best, but a good starting point.
* 640: Configuration files should mention their _local versionsElrond2011-11-121-0/+3
| | | | | Thanks go to Aleksej Serdjukov for bringing this up and providing the patch in the bug!
* Make sure we run fcgi in forked mode... mediagoblin is not currently thread ↵Christopher Allan Webber2011-10-301-1/+1
| | | | safe!
* More easy options for deploying without having to modify paste.ini...Christopher Allan Webber2011-10-301-2/+7
|
* Added a "broadcast" server config and a bit of helpful commenting (I hope!)Christopher Allan Webber2011-10-301-0/+21
|
* [620] Allow for multiple mediagoblin configs to be set in config.ini, use firstChristopher Allan Webber2011-10-291-1/+1
| | | | | This way we can copy paste.ini into paste_local.ini but not have to update it to find mediagoblin_local.ini.
* flup, not flerp!Christopher Allan Webber2011-10-231-1/+1
|
* Add a flup server option to the default paste.ini to make deployment a bit ↵Christopher Allan Webber2011-10-231-0/+5
| | | | easier.
* When using paste's static content server to serve mediaElrond2011-09-291-0/+2
| | | | | | | | | | | | | entries and other files the client should have some idea on how long it can cache those files locally before asking again for them. The old setting was: Don't allow the client to cache. New setting: 1 week for the media entries (they don't change, ever) 1 day for css/logos, etc. They change on an update, so people might want to see the new design soon.
* Slightly wrapping paste error middleware and turning it onChristopher Allan Webber2011-08-211-2/+10
| | | | Now we can show a nice "borked goblin" error :)
* Moving server.ini->paste.ini because willkg points out server.ini is ambiguousChristopher Allan Webber2011-06-201-0/+34
Updating the file, updating lazyserver.sh, updating docs.