-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzia.conf
33 lines (32 loc) · 1.26 KB
/
zia.conf
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
<zia>
<User>nobody</User>
<Group>nobody</Group>
<Listen>8880</Listen>
<ServerName>localhost</ServerName>
<DocumentRoot>./www</DocumentRoot>
<DirectoryIndex>index.html index.php</DirectoryIndex>
<UserDir>public_html</UserDir>
<Timeout>30</Timeout>
<PoolThreadNumber>10</PoolThreadNumber>
<PoolTaskSize>342</PoolTaskSize>
<ErrorLog>logs/zia_error.log</ErrorLog>
<LogLevel>DEBUG</LogLevel>
<SSLCertificateFile>ssl/server.crt</SSLCertificateFile>
<SSLCertificateKeyFile>ssl/server.key</SSLCertificateKeyFile>
<UseSSL>1</UseSSL>
<ModulesDir>./bin/modules/</ModulesDir>
<Include>mimetypes.conf</Include>
<AutoIndex>index.php index.html</AutoIndex>
<VirtualHost address="*" port="8443">
<DocumentRoot>./www</DocumentRoot>
<ServerName>localhost</ServerName>
<SSLCertificateFile>ssl/server.crt</SSLCertificateFile>
<SSLCertificateKeyFile>ssl/server.key</SSLCertificateKeyFile>
</VirtualHost>
<VirtualHost address="127.0.0.1" port="8880">
<DocumentRoot>./www</DocumentRoot>
<ServerName>127.0.0.1</ServerName>
<SSLCertificateFile>ssl/server.crt</SSLCertificateFile>
<SSLCertificateKeyFile>ssl/server.key</SSLCertificateKeyFile>
</VirtualHost>
</zia>