Mailman: update the variable substitution syntax
This commit is contained in:
parent
2ef37ad740
commit
51024371d3
4 changed files with 9 additions and 9 deletions
|
@ -141,7 +141,7 @@
|
||||||
# owner=root group=root mode=0600
|
# owner=root group=root mode=0600
|
||||||
|
|
||||||
- name: send root mail to abompard
|
- name: send root mail to abompard
|
||||||
lineinfile: dest=/etc/aliases regexp='^root:' line='root:\tabompard@fedoraproject.org'
|
lineinfile: dest=/etc/aliases regexp='^root:' line="root:\tabompard@fedoraproject.org"
|
||||||
notify:
|
notify:
|
||||||
- reload aliases
|
- reload aliases
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
# See ${mailman_webui_confdir}
|
# See {{ mailman_webui_confdir }}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
Alias /robots.txt ${mailman_webui_basedir}/static/hyperkitty/robots.txt
|
Alias /robots.txt {{ mailman_webui_basedir }}/static/hyperkitty/robots.txt
|
||||||
Alias /favicon.ico ${mailman_webui_basedir}/static/hyperkitty/favicon.ico
|
Alias /favicon.ico {{ mailman_webui_basedir }}/static/hyperkitty/favicon.ico
|
||||||
Alias /static ${mailman_webui_basedir}/static
|
Alias /static {{ mailman_webui_basedir }}/static
|
||||||
|
|
||||||
#ErrorLog /var/log/httpd/webui_error.log
|
#ErrorLog /var/log/httpd/webui_error.log
|
||||||
#CustomLog /var/log/httpd/webui_access.log combined
|
#CustomLog /var/log/httpd/webui_access.log combined
|
||||||
|
|
||||||
WSGIScriptAlias / ${mailman_webui_confdir}/webui.wsgi
|
WSGIScriptAlias / {{ mailman_webui_confdir }}/webui.wsgi
|
||||||
WSGIDaemonProcess webui display-name=webui maximum-requests=1000 processes=4 threads=4
|
WSGIDaemonProcess webui display-name=webui maximum-requests=1000 processes=4 threads=4
|
||||||
WSGISocketPrefix run/wsgi
|
WSGISocketPrefix run/wsgi
|
||||||
WSGIRestrictStdout On
|
WSGIRestrictStdout On
|
||||||
WSGIRestrictSignal Off
|
WSGIRestrictSignal Off
|
||||||
WSGIPythonOptimize 1
|
WSGIPythonOptimize 1
|
||||||
|
|
||||||
<Directory "${mailman_webui_confdir}">
|
<Directory "{{ mailman_webui_confdir }}">
|
||||||
<Files webui.wsgi>
|
<Files webui.wsgi>
|
||||||
Order deny,allow
|
Order deny,allow
|
||||||
Allow from all
|
Allow from all
|
||||||
|
@ -21,7 +21,7 @@ WSGIPythonOptimize 1
|
||||||
WSGIProcessGroup webui
|
WSGIProcessGroup webui
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
<Directory "${mailman_webui_basedir}/static">
|
<Directory "{{ mailman_webui_basedir }}/static">
|
||||||
Order deny,allow
|
Order deny,allow
|
||||||
Allow from all
|
Allow from all
|
||||||
Require all granted
|
Require all granted
|
||||||
|
|
|
@ -9,4 +9,4 @@
|
||||||
|
|
||||||
[general]
|
[general]
|
||||||
base_url: http://apps.stg.fedoraproject.org/lists
|
base_url: http://apps.stg.fedoraproject.org/lists
|
||||||
django_settings: ${mailman_webui_confdir}/settings.py
|
django_settings: {{ mailman_webui_confdir }}/settings.py
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue