Skip to content

Commit 2da8b25

Browse files
committed
add information about shutting down all application instances
1 parent 9e4a0ce commit 2da8b25

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

deployment/load-balancer-setup/apache/index.md

+6
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,12 @@ $ ./bin/app.cgi --port=20477 & ./bin/app.cgi --port=20478 &
9696

9797
`&` is required to make sure that both applications are running in parallel.
9898

99+
To stop all servers,
100+
101+
```
102+
$ pkill app.cgi
103+
```
104+
99105
## Access application from browser
100106

101107
Open `http://myapp.fano` you should see main controller is invoked. There is no visual indication compare to application running without load balancer.

deployment/load-balancer-setup/nginx/index.md

+5
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,11 @@ $ ./bin/app.cgi --port=20477 & ./bin/app.cgi --port=20478 &
8989

9090
`&` is required to make sure that both applications are running in parallel.
9191

92+
To stop all servers,
93+
94+
```
95+
$ pkill app.cgi
96+
```
9297
## Access application from browser
9398

9499
Open `http://myapp.fano` you should see main controller is invoked.

0 commit comments

Comments
 (0)