# SPDX-License-Identifier: CC0-1.0 # Sample Apache2 configuration file for Hydrilla server (over unencrypted HTTP). # # Copyright (C) 2022 Wojtek Kosior # Please adapt this file according to your needs can place it file under # Apache2's available site configs directory which will be # /etc/apache2/sites-available/ or similar. Then, enable it using the following # command: # a2ensite hydrilla.example.com # You also need to install and enable the wsgi module for Apache if you haven't # already (e.g. with libapache2-mod-wsgi-py3 Debian package). # The new configuration will only take effect after you restart/reload Apache2 # daemon. # Keep in mind that due to some external limitations Haketilo will not connect # to HTTP Hydrilla servers running elsewhere than localhost. To get a working # public Hydrilla server you should obtain a TLS certificate and use the # attached hydrilla.example.com.tls.conf file instead of this one. # This configuration file assumes Hydrilla is installed under Python's default # load path and that the attached hydrilla.wsgi sample script has been saved as # /var/lib/hydrilla/wsgi/hydrilla.wsgi ServerName hydrilla.example.com ServerAdmin admin@example.com DocumentRoot /var/lib/hydrilla/malcontent Order allow,deny Allow from all = 2.4> Require all granted ForceType application/json # Make Apache2 automatically pick up the new version of the wsgi script when # it gets written. This line will fail if you don't have mod_wsgi installed # and enabled. WSGIScriptReloading On # The default configuration of mod_wsgi on most *nix systems is to run wsgi # scripts in so-called embedded mode. The following 2 lines instruct Apache to # instead run our wsgi script in a daemon process which makes it more flexible # and reliable. Here we also set environment variables that are needed to tell # Python that the system supports UTF-8 encoding. # Feel free to modify the arguments to WSGIDaemonProcess according to your # needs: # https://modwsgi.readthedocs.io/en/develop/user-guides/quick-configuration-guide.html#delegation-to-daemon-process WSGIDaemonProcess hydrilla.example.com lang='C.UTF-8' locale='C.UTF-8' WSGIProcessGroup hydrilla.example.com Order allow,deny Allow from all = 2.4> Require all granted WSGIScriptAliasMatch "^/((resource|mapping)/[^/]+[.]json|query)$" "/var/lib/hydrilla/wsgi/hydrilla.wsgi/$1" ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined