Lines 7-22
Link Here
|
7 |
-#SSLSessionCache shmht:logs/ssl_scache(512000) |
7 |
-#SSLSessionCache shmht:logs/ssl_scache(512000) |
8 |
-#SSLSessionCache shmcb:logs/ssl_scache(512000) |
8 |
-#SSLSessionCache shmcb:logs/ssl_scache(512000) |
9 |
-SSLSessionCache dbm:logs/ssl_scache |
9 |
-SSLSessionCache dbm:logs/ssl_scache |
10 |
+#SSLSessionCache shmht:/var/log/httpd-ssl_scache(512000) |
10 |
+#SSLSessionCache shmht:@@DESTDIR@@/var/log/httpd-ssl_scache(512000) |
11 |
+#SSLSessionCache shmcb:/var/log/httpd-ssl_scache(512000) |
11 |
+#SSLSessionCache shmcb:@@DESTDIR@@/var/log/httpd-ssl_scache(512000) |
12 |
+SSLSessionCache dbm:/var/log/httpd-ssl_scache |
12 |
+SSLSessionCache dbm:@@DESTDIR@@/var/log/httpd-ssl_scache |
13 |
SSLSessionCacheTimeout 300 |
13 |
SSLSessionCacheTimeout 300 |
14 |
|
14 |
|
15 |
# Semaphore: |
15 |
# Semaphore: |
16 |
# Configure the path to the mutual exclusion semaphore the |
16 |
# Configure the path to the mutual exclusion semaphore the |
17 |
# SSL engine uses internally for inter-process synchronization. |
17 |
# SSL engine uses internally for inter-process synchronization. |
18 |
-SSLMutex file:logs/ssl_mutex |
18 |
-SSLMutex file:logs/ssl_mutex |
19 |
+SSLMutex file:/var/log/httpd-ssl_mutex |
19 |
+SSLMutex file:@@DESTDIR@@/var/log/httpd-ssl_mutex |
20 |
|
20 |
|
21 |
# Pseudo Random Number Generator (PRNG): |
21 |
# Pseudo Random Number Generator (PRNG): |
22 |
# Configure one or more sources to seed the PRNG of the |
22 |
# Configure one or more sources to seed the PRNG of the |
Lines 25-31
Link Here
|
25 |
# Log levels are (ascending order: higher ones include lower ones): |
25 |
# Log levels are (ascending order: higher ones include lower ones): |
26 |
# none, error, warn, info, trace, debug. |
26 |
# none, error, warn, info, trace, debug. |
27 |
-SSLLog logs/ssl_engine_log |
27 |
-SSLLog logs/ssl_engine_log |
28 |
+SSLLog /var/log/httpd-ssl_engine_log |
28 |
+SSLLog @@DESTDIR@@/var/log/httpd-ssl_engine_log |
29 |
SSLLogLevel info |
29 |
SSLLogLevel info |
30 |
|
30 |
|
31 |
## |
31 |
## |
Lines 39-46
Link Here
|
39 |
ServerAdmin you@your.address |
39 |
ServerAdmin you@your.address |
40 |
-ErrorLog logs/error_log |
40 |
-ErrorLog logs/error_log |
41 |
-TransferLog logs/access_log |
41 |
-TransferLog logs/access_log |
42 |
+ErrorLog /var/log/httpd-error.log |
42 |
+ErrorLog @@DESTDIR@@/var/log/httpd-error.log |
43 |
+TransferLog /var/log/httpd-access.log |
43 |
+TransferLog @@DESTDIR@@/var/log/httpd-access.log |
44 |
|
44 |
|
45 |
# SSL Engine Switch: |
45 |
# SSL Engine Switch: |
46 |
# Enable/Disable SSL for this virtual host. |
46 |
# Enable/Disable SSL for this virtual host. |
Lines 110-116
Link Here
|
110 |
# The home of a custom SSL log file. Use this when you want a |
110 |
# The home of a custom SSL log file. Use this when you want a |
111 |
# compact non-error SSL logfile on a virtual host basis. |
111 |
# compact non-error SSL logfile on a virtual host basis. |
112 |
-CustomLog logs/ssl_request_log \ |
112 |
-CustomLog logs/ssl_request_log \ |
113 |
+CustomLog /var/log/httpd-ssl_request.log \ |
113 |
+CustomLog @@DESTDIR@@/var/log/httpd-ssl_request.log \ |
114 |
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" |
114 |
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" |
115 |
|
115 |
|
116 |
</VirtualHost> |
116 |
</VirtualHost> |