Skip to content

Commit d38031c

Browse files
committed
Fix docs
1 parent 3a88010 commit d38031c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

doc/examples.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This example creates the main (default) vhost, which only serves static files.
3838
docker run -d -it \
3939
-p 9090:80 \
4040
-v $(pwd)/www:/var/www/default \
41-
devilbox/nginx-stable
41+
devilbox/apache-2.2
4242
```
4343
3. Verify
4444
```bash
@@ -80,7 +80,7 @@ This example creates the main (default) vhost, which contacts a remote PHP-FPM h
8080
-v $(pwd)/www:/var/www/default \
8181
-e MAIN_VHOST_BACKEND='conf:phpfpm:tcp:php:9000' \
8282
--link php \
83-
devilbox/nginx-stable
83+
devilbox/apache-2.2
8484
```
8585
4. Verify
8686
```bash
@@ -126,7 +126,7 @@ The same as the previous example, but also ensures that you can edit files local
126126
-e NEW_GID=$(id -g) \
127127
-e MAIN_VHOST_BACKEND='conf:phpfpm:tcp:php:9000' \
128128
--link php \
129-
devilbox/nginx-stable
129+
devilbox/apache-2.2
130130
```
131131
4. Verify
132132
```bash
@@ -178,7 +178,7 @@ Additionally we are mounting the `./ca` directory into the container under `/ca`
178178
-e MAIN_VHOST_BACKEND='conf:phpfpm:tcp:php:9000' \
179179
-e MAIN_VHOST_SSL_TYPE='redir' \
180180
--link php \
181-
devilbox/nginx-stable
181+
devilbox/apache-2.2
182182
```
183183
4. Verify redirect
184184
```bash
@@ -228,7 +228,7 @@ The following example proxies all HTTP requests to a NodeJS remote backend. You
228228
-p 80:80 \
229229
-e MAIN_VHOST_BACKEND='conf:rproxy:http:nodejs:3000' \
230230
--link nodejs \
231-
devilbox/nginx-stable
231+
devilbox/apache-2.2
232232
```
233233
4. Verify
234234
```bash
@@ -277,7 +277,7 @@ Additionally all projects will have the `.com` suffix added to their domain name
277277
-e MASS_VHOST_BACKEND='conf:phpfpm:tcp:php:9000' \
278278
--link php \
279279
--link mysql \
280-
devilbox/nginx-stable
280+
devilbox/apache-2.2
281281
```
282282
5. Create `project-1`
283283
```bash

doc/features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ docker run -it \
5757
-e MASS_VHOST_DOCROOT_DIR=www \
5858
-e MASS_VHOST_TLD_SUFFIX=.loc \
5959
-v /local/path:/shared/httpd \
60-
devilbox/nginx-stable
60+
devilbox/apache-2.2
6161
```
6262

6363

@@ -83,7 +83,7 @@ docker run -it \
8383
-v $(pwd)/www:/var/www/default \
8484
-e MAIN_VHOST_BACKEND='conf:phpfpm:tcp:phpserver:9000' \
8585
--link phpserver \
86-
devilbox/nginx-stable
86+
devilbox/apache-2.2
8787
```
8888

8989

doc/volumes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Mount this directory to your local file system in order to add html, js, php, et
2424
docker run -d -it \
2525
-v $(pwd)/default:/var/www/default \
2626
-e MAIN_VHOST_ENABLE=1 \
27-
devilbox/nginx-stable
27+
devilbox/apache-2.2
2828
```
2929

3030

@@ -43,7 +43,7 @@ Mount this directory to your local file system in order to add html, js, php, et
4343
docker run -d -it \
4444
-v $(pwd)/projects:/shared/httpd \
4545
-e MASS_VHOST_ENABLE=1 \
46-
devilbox/nginx-stable
46+
devilbox/apache-2.2
4747
```
4848

4949

0 commit comments

Comments
 (0)