Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

updated config docu #25

Merged
merged 1 commit into from
Dec 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions docs/source/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
Configuration
=============

.. warning::

Please read the PyWPS documentation_ to find details about possible configuration options.


Command-line options
--------------------

Expand Down Expand Up @@ -45,5 +50,25 @@ Start the service with your custom configuration:
# start the service with this configuration
$ hummingbird start -c etc/custom.cfg

Example
~~~~~~~

Here is an example of a customized configuration.
Please read the PyWPS documentation_ for a detailed description of the options, like `outputpath` and `workdir`.

.. code-block:: ini

[server]
url = http://demo.org:5000/wps
outputurl = http://demo.org:5000/outputs
outputpath = /var/lib/pywps/outputs
workdir = /var/lib/pywps/tmp

[logging]
level = DEBUG

Find more examples in `etc/`.


.. _PyWPS: http://pywps.org/
.. _documentation: https://pywps.readthedocs.io/en/master/configuration.html
2 changes: 2 additions & 0 deletions etc/sample-custom.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[server]
url = http://demo.org:5000/wps
outputurl = http://demo.org:5000/outputs
outputpath = /var/lib/pywps/outputs
workdir = /var/lib/pywps/tmp

[logging]
level = DEBUG