Skip to content

Commit 3f6ceab

Browse files
committed
improve text
1 parent 1a37ef2 commit 3f6ceab

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

deployment/docker/index.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ description: Tutorial on how to deploy Fano application with Docker container.
77

88
## Prerequisite
99

10-
You have working Docker and Docker Compose installation.
10+
You must have a working Docker and Docker Compose installation.
1111

12-
It is assumed your current user is in group `docker`. If you are not in `docker` group, you have to prefix all docker command with `sudo` or run it with elevated privilege (root).
12+
It is assumed that your current user is in the group `docker`. If you are not in the `docker` group, you have to prefix all Docker commands with sudo or run them with elevated privileges (root).
1313

1414
## Deploy Fano CLI-generated Project with Docker
1515

16-
[Fano CLI](/scaffolding-with-fano-cli/) since `v1.13.0` generates `docker-compose.yaml` file during creation of [CGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-cgi-project), [FastCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-fcgid-project), [SCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-scgi-project) and [uwsgi](/scaffolding-with-fano-cli/creating-project/#scaffolding-uwsgi-project) project.
16+
[Fano CLI](/scaffolding-with-fano-cli/) generates `docker-compose.yaml` file during creation of [CGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-cgi-project), [FastCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-fcgid-project), [SCGI](/scaffolding-with-fano-cli/creating-project/#scaffolding-scgi-project) and [uwsgi](/scaffolding-with-fano-cli/creating-project/#scaffolding-uwsgi-project) project since `v1.13.0`.
17+
18+
This means you can skip the steps explained in the sections below and simply compile the application and run it with `docker-compose up`.
1719

18-
Which means you can skip steps explained in sections below and just compile application and then run with `docker-compose up`.
1920
```
2021
$ fanocli --project-fcgi=my-fcgi.fano
2122
$ cd my-fcgi.fano
@@ -24,8 +25,8 @@ $ ./build.sh
2425
$ docker-compose up
2526
```
2627

27-
Open IP address of Fano application container to access it.
28-
Read [Get IP address of Fano application docker container](#get-ip-address-of-fano-application-docker-container) for more information.
28+
Open the IP address of the Fano application container to access it.
29+
Read [Get IP Address of Fano Application Docker Container](#get-ip-address-of-fano-application-docker-container) for more information.
2930

3031
## Deploy Fano CGI Application with Docker
3132

@@ -36,7 +37,7 @@ Create file name `Dockerfile` in project root directory with content as shown be
3637
FROM httpd:2.4
3738
```
3839

39-
This tells Docker to create container image based Apache 2.4. This is Debian-based image with common Apache modules are installed.
40+
This tells Docker to create container image with Apache 2.4. This is Debian-based image with common Apache modules installed.
4041

4142
Now append lines below. We make sure that `mod_cgi`, `mod_cgid` and `mod_rewrite` modules are loaded by modifying main Apache configuration like so.
4243

@@ -50,18 +51,17 @@ RUN sed -i \
5051
/usr/local/apache2/conf/httpd.conf
5152
```
5253

53-
In case unclear to you, regular expressions replace `#LoadModule mod_cgi` to become `LoadModule mod_cgi` effectively tells Apache to load `mod_cgi`.
54-
55-
We also tells Apache to include any additional configurations in `httpd-vhosts.conf` file and set `ServerName` configuration.
54+
If it is not clear to you, regular expression replaces `#LoadModule mod_cgi` to become `LoadModule mod_cgi`, effectively telling Apache to load `mod_cgi`.
5655

56+
We also tell Apache to include any additional configurations in the `httpd-vhosts.conf` file and set the `ServerName` configuration.
5757

58-
Append line below to copy `vhost.example` file to `httpd-vhosts.conf` inside container. We will create `vhost.example` latter.
58+
Append the line below to copy the `vhost.example` file to `httpd-vhosts.conf` inside the container. We will create `vhost.example` later.
5959

6060
```
6161
COPY ./vhost.example /usr/local/apache2/conf/extra/httpd-vhosts.conf
6262
```
6363

64-
Remove `index.html` as we do not need it, but this is optional step.
64+
Remove `index.html` as we do not need it, but this is an optional step.
6565
```
6666
RUN rm /usr/local/apache2/htdocs/index.html
6767
```

0 commit comments

Comments
 (0)