Skip to content

Commit 75ead63

Browse files
authored
Emphasize text
1 parent ea4463e commit 75ead63

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

working-with-application/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,12 @@ You can replace `TInetSvrFactory` with `TUnixSvrFactory` class if you want to us
170170
You can replace `TInetSvrFactory` with `TBoundSvrFactory` if you want to create FastCGI application which run and managed by web server, for example Apache with `mod_fcgid` module. See
171171
[fano-fcgid](https://github.com/fanoframework/fano-fcgid) example demo application.
172172

173-
`TInetSvrFactory`, `TUnixSvrFactory` and `TBoundSvrFactory` use [select()](http://man7.org/linux/man-pages/man2/select.2.html) to monitor if socket is ready for I/O operation. To use [epoll](http://man7.org/linux/man-pages/man7/epoll.7.html), replace with `TEpollInetSvrFactory`, `TEpollUnixSvrFactory` and `TEpollBoundSvrFactory`. If you use FreeBSD, to use [kqueue](https://www.freebsd.org/cgi/man.cgi?kqueue), replace with `TKqueueInetSvrFactory`, `TKqueueUnixSvrFactory` and `TKqueueBoundSvrFactory`. You need to add conditional compilation define `$DEFINE USE_KQUEUE` or add `-dUSE_KQUEUE` line in `build.cfg` file.
173+
`TInetSvrFactory`, `TUnixSvrFactory` and `TBoundSvrFactory` use [*select*](http://man7.org/linux/man-pages/man2/select.2.html) to monitor if socket is ready for I/O operation. To use [*epoll*](http://man7.org/linux/man-pages/man7/epoll.7.html), replace with `TEpollInetSvrFactory`, `TEpollUnixSvrFactory` and `TEpollBoundSvrFactory`. If you use FreeBSD, to use [*kqueue*](https://www.freebsd.org/cgi/man.cgi?kqueue), replace with `TKqueueInetSvrFactory`, `TKqueueUnixSvrFactory` and `TKqueueBoundSvrFactory`. You need to add conditional compilation define `$DEFINE USE_KQUEUE` or add `-dUSE_KQUEUE` line in `build.cfg` file.
174174

175-
See [Deploy as FastCGI application](/deployment/fastcgi) for information how to
175+
See [*Deploy as FastCGI application*](/deployment/fastcgi) for information how to
176176
deploy FastCGI application on various web servers.
177177

178-
You may want to read [Scaffolding FastCGI project directory structure](/scaffolding-with-fano-cli/creating-project#scaffolding-fastcgi-project) for information how to scaffolding FastCGI web application with [Fano CLI](https://github.com/fanoframework/fano-cli).
178+
You may want to read [*Scaffolding FastCGI project directory structure*](/scaffolding-with-fano-cli/creating-project#scaffolding-fastcgi-project) for information how to scaffolding FastCGI web application with [Fano CLI](https://github.com/fanoframework/fano-cli).
179179

180180
## SCGI Application
181181

0 commit comments

Comments
 (0)