Skip to content

Commit 5f4b9d0

Browse files
authored
[plugins] Update file names and other punctuation in apache docs (#1169)
## Summary TSIA. Closes #1155 Signed-off-by: Rodrigo Ipince <[email protected]>
1 parent 2870425 commit 5f4b9d0

File tree

1 file changed

+8
-7
lines changed
  • docs/app/docs/devbox_examples/servers

1 file changed

+8
-7
lines changed

docs/app/docs/devbox_examples/servers/apache.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Apache
33
---
44

5-
Apache can be automatically configured by Devbox via the built-in Apache Plugin. This plugin will activate automatically when you install Apache using `devbox add apacheHttpd`
5+
Apache can be automatically configured by Devbox via the built-in Apache Plugin. This plugin will activate automatically when you install Apache using `devbox add apache`.
66

77
[**Example Repo**](https://github.com/jetpack-io/devbox/tree/main/examples/servers/apache)
88

@@ -22,27 +22,28 @@ This will install the latest version of Apache. You can find other installable v
2222

2323
## Apache Plugin Details
2424

25-
The Apache plugin will automatically create the following configuration when you install Apache with `devbox add`
25+
The Apache plugin will automatically create the following configuration when you install Apache with `devbox add`.
2626

2727
### Services
2828
* apache
2929

30-
Use `devbox services start|stop apache` to start and stop httpd in the background
30+
Use `devbox services start|stop apache` to start and stop httpd in the background.
3131

3232
### Helper Files
3333
The following helper files will be created in your project directory:
3434

35-
* {PROJECT_DIR}/devbox.d/apacheHttpd/httpd.conf
35+
* {PROJECT_DIR}/devbox.d/apache/httpd.conf
3636
* {PROJECT_DIR}/devbox.d/web/index.html
3737

38-
Note that by default, Apache is configured with `./devbox.d/web` as the DocumentRoot. To change this, you should copy and modify the default `./devbox.d/Apache/Apache.conf`
38+
Note that by default, Apache is configured with `./devbox.d/web` as the DocumentRoot. To change this, you should copy and modify the default `./devbox.d/apache/httpd.conf`.
3939

4040
### Environment Variables
4141
```bash
42-
HTTPD_ERROR_LOG_FILE={PROJECT_DIR}/.devbox/virtenv/apacheHttpd/error.log
42+
HTTPD_ACCESS_LOG_FILE={PROJECT_DIR}/.devbox/virtenv/apache/access.log
43+
HTTPD_ERROR_LOG_FILE={PROJECT_DIR}/.devbox/virtenv/apache/error.log
4344
HTTPD_PORT=8080
4445
HTTPD_DEVBOX_CONFIG_DIR={PROJECT_DIR}
45-
HTTPD_CONFDIR={PROJECT_DIR}/devbox.d/apacheHttpd
46+
HTTPD_CONFDIR={PROJECT_DIR}/devbox.d/apache
4647
```
4748

4849
### Notes

0 commit comments

Comments
 (0)