mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-06 13:01:50 +02:00
Update apache-vhost config generation
The current configuration generated uses the old syntax for Apache access control. On a Debian 10 install I recently did this generated config just resulted in an access denied error when using Apache and mod_wsgi. Making the changes in this pull request to my Apache config solved the issue (got the hint looking at Flask's documentation here: https://flask.palletsprojects.com/en/1.1.x/deploying/mod_wsgi/#configuring-apache).
This commit is contained in:
parent
fa14100b16
commit
9301f96570
1 changed files with 1 additions and 2 deletions
|
@ -11,8 +11,7 @@
|
|||
<Directory {{ pkg_path }}>
|
||||
WSGIProcessGroup ihatemoney
|
||||
WSGIApplicationGroup %{GLOBAL}
|
||||
Order deny,allow
|
||||
Allow from all
|
||||
Require all granted
|
||||
</Directory>
|
||||
|
||||
Alias /static/ {{ pkg_path }}/static/
|
||||
|
|
Loading…
Reference in a new issue