7a0f8698a1
Change-Id: I3ad5ee77a2e2e8613316b1e935256d5ba0394420
17 lines
569 B
Plaintext
17 lines
569 B
Plaintext
Listen %PUBLICPORT%
|
|
|
|
<VirtualHost *:%PUBLICPORT%>
|
|
DocumentRoot "%HTTPROOT%"
|
|
<Directory "%HTTPROOT%">
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride None
|
|
Order allow,deny
|
|
Allow from all
|
|
Require all granted
|
|
</Directory>
|
|
ErrorLog /var/log/apache2/ipxe_error.log
|
|
ErrorLogFormat "%{cu}t [%-m:%l] [pid %P:tid %T] %7F: %E: [client\ %a] [frontend\ %A] %M% ,\ referer\ %{Referer}i"
|
|
LogLevel info
|
|
CustomLog /var/log/apache2/ipxe_access.log "%{%Y-%m-%d}t %{%T}t.%{msec_frac}t [%l] %a \"%r\" %>s %b"
|
|
</VirtualHost>
|