This is an automated email from the git hooks/post-receive script. rubund-guest pushed a commit to branch master in repository osm-tile-server.
commit 7e272279f619dcd107881791bc70328f2ad055e7 Author: Ruben Undheim <[email protected]> Date: Mon Sep 7 19:21:53 2015 +0200 Added files for using tilelite in wsgi mode --- etc/apache-example.txt | 12 ++++++++++++ etc/tilelite.wsgi | 5 +++++ 2 files changed, 17 insertions(+) diff --git a/etc/apache-example.txt b/etc/apache-example.txt new file mode 100644 index 0000000..e46557b --- /dev/null +++ b/etc/apache-example.txt @@ -0,0 +1,12 @@ +<VirtualHost *:80> +ServerName tull.naturfakta.no +WSGIScriptAlias / /usr/local/testing.wsgi +WSGIDaemonProcess karttest user=osm-tile-server group=osm-tile-server processes=10 threads=1 +WSGIProcessGroup karttest + +<Directory /usr/local> + AllowOverride None + Require all granted +</Directory> + +</VirtualHost> diff --git a/etc/tilelite.wsgi b/etc/tilelite.wsgi new file mode 100644 index 0000000..de85f40 --- /dev/null +++ b/etc/tilelite.wsgi @@ -0,0 +1,5 @@ +from tilelite import Server + +application = Server('/usr/share/openstreetmap-carto/style-osm-tile-server.xml') +dir(application) + -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/osm-tile-server.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

