diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-12-17 19:11:44 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2006-12-17 19:11:44 +0000 |
commit | cc9a51e28cac4fc01ab8f73cf8e2cbcd5771a690 (patch) | |
tree | 59d2a329954b3c70664ec6c3578ff95670b1bedd /ports-mgmt | |
parent | space -> tab (diff) |
- don't hardcode PREFIX
- add setup intrauctions for LightHTTPD
PR: 106683
Submitted by: Wesley Shields
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/tinderbox-devel/files/pkg-message.in | 21 | ||||
-rw-r--r-- | ports-mgmt/tinderbox/files/pkg-message.in | 21 |
2 files changed, 30 insertions, 12 deletions
diff --git a/ports-mgmt/tinderbox-devel/files/pkg-message.in b/ports-mgmt/tinderbox-devel/files/pkg-message.in index fa0728b84231..02c9151593f7 100644 --- a/ports-mgmt/tinderbox-devel/files/pkg-message.in +++ b/ports-mgmt/tinderbox-devel/files/pkg-message.in @@ -1,4 +1,4 @@ -misc/tinderbox is now setup, but it requires some additional setup. +misc/tinderbox is now installed, but it requires some additional setup. The following walkthrough is for PostgreSQL databases: @@ -86,15 +86,24 @@ The following walkthrough is the webserver setup: - In your Apache configuration, add the following lines: - Alias /tb/logs/ "/usr/local/tinderbox/logs/" - Alias /tb/packages/ "/usr/local/tinderbox/packages/" - Alias /tb/errors/ "/usr/local/tinderbox/errors/" - Alias /tb/ "/usr/local/tinderbox/scripts/www-exp/" - <Directory "/usr/local/tinderbox/"> + Alias /tb/logs/ "%%PREFIX%%/tinderbox/logs/" + Alias /tb/packages/ "%%PREFIX%%/tinderbox/packages/" + Alias /tb/errors/ "%%PREFIX%%/tinderbox/errors/" + Alias /tb/ "%%PREFIX%%/tinderbox/scripts/www-exp/" + <Directory "%%PREFIX%%/tinderbox/"> Order allow,deny Allow from all </Directory> +- In your Lighttpd configuration: + +Turn on "mod_alias" and add the following lines: + +alias.url = ( "/tb/packages/" => "%%PREFIX%%/tinderbox/packages/", + "/tb/errors/" => "%%PREFIX%%/tinderbox/errors/", + "/tb/" => "%%PREFIX%%/tinderbox/scripts/www-exp/" ) +dir-listing.activate = "enable" + Check your system by going to http://localhost/tb/ The following walkthrough is the first run for a port in the diff --git a/ports-mgmt/tinderbox/files/pkg-message.in b/ports-mgmt/tinderbox/files/pkg-message.in index fa0728b84231..02c9151593f7 100644 --- a/ports-mgmt/tinderbox/files/pkg-message.in +++ b/ports-mgmt/tinderbox/files/pkg-message.in @@ -1,4 +1,4 @@ -misc/tinderbox is now setup, but it requires some additional setup. +misc/tinderbox is now installed, but it requires some additional setup. The following walkthrough is for PostgreSQL databases: @@ -86,15 +86,24 @@ The following walkthrough is the webserver setup: - In your Apache configuration, add the following lines: - Alias /tb/logs/ "/usr/local/tinderbox/logs/" - Alias /tb/packages/ "/usr/local/tinderbox/packages/" - Alias /tb/errors/ "/usr/local/tinderbox/errors/" - Alias /tb/ "/usr/local/tinderbox/scripts/www-exp/" - <Directory "/usr/local/tinderbox/"> + Alias /tb/logs/ "%%PREFIX%%/tinderbox/logs/" + Alias /tb/packages/ "%%PREFIX%%/tinderbox/packages/" + Alias /tb/errors/ "%%PREFIX%%/tinderbox/errors/" + Alias /tb/ "%%PREFIX%%/tinderbox/scripts/www-exp/" + <Directory "%%PREFIX%%/tinderbox/"> Order allow,deny Allow from all </Directory> +- In your Lighttpd configuration: + +Turn on "mod_alias" and add the following lines: + +alias.url = ( "/tb/packages/" => "%%PREFIX%%/tinderbox/packages/", + "/tb/errors/" => "%%PREFIX%%/tinderbox/errors/", + "/tb/" => "%%PREFIX%%/tinderbox/scripts/www-exp/" ) +dir-listing.activate = "enable" + Check your system by going to http://localhost/tb/ The following walkthrough is the first run for a port in the |