[Pywps-dev] pywps on lighthttpd
Martin Landa
landa.martin at gmail.com
Wed May 10 11:37:31 PDT 2017
Hi,
2017-05-10 17:24 GMT+02:00 Martin Landa <landa.martin at gmail.com>:
> is there anyone by chance who is running successfully pywps on
> lighthttpd? I started with configuration bellow:
for those who are interested. I managed to create working version with
flup server:
"""
from flup.server.fcgi import WSGIServer
from pywps.app.Service import Service
from processes.costpath import CostPath
processes = [
CostPath()
]
# Service accepts two parameters:
# 1 - list of process instances
# 2 - list of configuration files
application = Service(
processes,
['/path/to/pywps.cfg']
)
WSGIServer(application).run()
"""
Ma
--
Martin Landa
http://geo.fsv.cvut.cz/gwiki/Landa
http://gismentors.cz/mentors/landa
More information about the pywps-dev
mailing list