/usr/share/doc/automx/examples/apache.conf.example is in automx 0.10.0-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | # Example for autoconfig
<VirtualHost example.com:80>
ServerName autoconfig.example.com
ServerAdmin webmaster@example.com
<IfModule mod_wsgi.c>
WSGIScriptAlias /mail/config-v1.1.xml /usr/share/pyshared/automx_wsgi.py
<Directory "/usr/share/pyshared/automx">
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
</IfModule>
</VirtualHost>
# SSL example for autodiscover
<VirtualHost example.com:443>
ServerName autodiscover.example.com:443
ServerAdmin webmaster@example.com
<IfModule mod_wsgi.c>
WSGIScriptAlias /Autodiscover/Autodiscover.xml /usr/share/pyshared/automx_wsgi.py
WSGIScriptAlias /autodiscover/autodiscover.xml /usr/share/pyshared/automx_wsgi.py
WSGIScript /mobileconfig /usr/share/pyshared/automx_wsgi.py
<Directory "/usr/share/pyshared/automx">
<IfVersion < 2.4>
Order allow,deny
Allow from all
</IfVersion>
<IfVersion >= 2.4>
Require all granted
</IfVersion>
</Directory>
</IfModule>
# more ssl options ...
</VirtualHost>
|