diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-04-18 20:29:41 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-04-18 20:29:41 +0000 |
commit | a7fe341967a9b6a7d94feb12765b74f343905ad4 (patch) | |
tree | e657c5991a80a7c090d5d8e21574355994aed11c /www/apache21/files/patch-docs:conf:ssl-std.conf | |
parent | Update to 0.2.1 (diff) |
Respect $DESTDIR for all paths
PR: 37211
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=57866
Diffstat (limited to 'www/apache21/files/patch-docs:conf:ssl-std.conf')
-rw-r--r-- | www/apache21/files/patch-docs:conf:ssl-std.conf | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/www/apache21/files/patch-docs:conf:ssl-std.conf b/www/apache21/files/patch-docs:conf:ssl-std.conf index b13bee04e6af..267aaae4d9e4 100644 --- a/www/apache21/files/patch-docs:conf:ssl-std.conf +++ b/www/apache21/files/patch-docs:conf:ssl-std.conf @@ -7,16 +7,16 @@ -#SSLSessionCache shmht:logs/ssl_scache(512000) -#SSLSessionCache shmcb:logs/ssl_scache(512000) -SSLSessionCache dbm:logs/ssl_scache -+#SSLSessionCache shmht:/var/log/httpd-ssl_scache(512000) -+#SSLSessionCache shmcb:/var/log/httpd-ssl_scache(512000) -+SSLSessionCache dbm:/var/log/httpd-ssl_scache ++#SSLSessionCache shmht:@@DESTDIR@@/var/log/httpd-ssl_scache(512000) ++#SSLSessionCache shmcb:@@DESTDIR@@/var/log/httpd-ssl_scache(512000) ++SSLSessionCache dbm:@@DESTDIR@@/var/log/httpd-ssl_scache SSLSessionCacheTimeout 300 # Semaphore: # Configure the path to the mutual exclusion semaphore the # SSL engine uses internally for inter-process synchronization. -SSLMutex file:logs/ssl_mutex -+SSLMutex file:/var/log/httpd-ssl_mutex ++SSLMutex file:@@DESTDIR@@/var/log/httpd-ssl_mutex # Pseudo Random Number Generator (PRNG): # Configure one or more sources to seed the PRNG of the @@ -25,7 +25,7 @@ # Log levels are (ascending order: higher ones include lower ones): # none, error, warn, info, trace, debug. -SSLLog logs/ssl_engine_log -+SSLLog /var/log/httpd-ssl_engine_log ++SSLLog @@DESTDIR@@/var/log/httpd-ssl_engine_log SSLLogLevel info ## @@ -39,8 +39,8 @@ ServerAdmin you@your.address -ErrorLog logs/error_log -TransferLog logs/access_log -+ErrorLog /var/log/httpd-error.log -+TransferLog /var/log/httpd-access.log ++ErrorLog @@DESTDIR@@/var/log/httpd-error.log ++TransferLog @@DESTDIR@@/var/log/httpd-access.log # SSL Engine Switch: # Enable/Disable SSL for this virtual host. @@ -110,7 +110,7 @@ # The home of a custom SSL log file. Use this when you want a # compact non-error SSL logfile on a virtual host basis. -CustomLog logs/ssl_request_log \ -+CustomLog /var/log/httpd-ssl_request.log \ ++CustomLog @@DESTDIR@@/var/log/httpd-ssl_request.log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" </VirtualHost> |