Skip to content

Commit b14d40b

Browse files
committed
Merge branch 'master' into 1.9.0
2 parents 4bada6b + 9b82b43 commit b14d40b

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Diff for: documentation/index.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ description: Documentation and developer's resources for Fano Framework, web app
4444
- [XSS Protection](/security/xss-protection)
4545
- [Clickjacking Protection](/security/clickjacking-protection)
4646
- **[Password hash](/security/password-hash)** explains how to properly hash password using Argon2i, SCrypt, BCrypt password hash algorithm.
47-
- [JSON Web Token (JWT)](/security/jwt)
47+
- **[JSON Web Token (JWT)](/security/jwt)** discusses various topics regarding JWT such as how to generate, sign and verify JWT token with Fano Framework.
4848

4949
## Utilities
5050

51-
- [Using Loggers](/utilities/using-loggers)
51+
- **[Using Loggers](/utilities/using-loggers)** explains how to log to syslog, file, database or email.
5252
- [Use HTTP client to call API](/utilities/http-clients)
5353
- [Sending email](/utilities/sending-email)
5454
- [Identifying client user-agent](/utilities/identifying-client-user-agent)
@@ -57,17 +57,17 @@ description: Documentation and developer's resources for Fano Framework, web app
5757

5858
## Database
5959

60-
- [Working with Database](/database)
60+
- **[Working with Database](/database)** explains how to work with database such as MySQL, PostgreSQL, Firebird, SQLite or other database via ODBC.
6161

6262
## Deployment
6363

6464
- [Deploy Fano Framework web application on various server setup](/deployment)
65-
- [Deploy as CGI application](/deployment/cgi)
66-
- [Deploy as FastCGI application](/deployment/fastcgi)
67-
- [Deploy as SCGI application](/deployment/scgi)
68-
- [Deploy as uwsgi application](/deployment/uwsgi)
69-
- [Deploy as http application](/deployment/standalone-web-server)
70-
- [Deploy Fano web application with web server as load balancer](/deployment/load-balancer-setup)
65+
- **[Deploy as CGI application](/deployment/cgi)** explains how to deploy CGI web application with Apache mod_cgi or mod_cgid.
66+
- **[Deploy as FastCGI application](/deployment/fastcgi)** explains how to deploy FastCGI web application using reverse proxy with Apache mod_proxy_fcgi or mod_fcgid module or Nginx.
67+
- **[Deploy as SCGI application](/deployment/scgi)** explains how to deploy SCGI web application using reverse proxy with Apache mod_proxy_scgi module or Nginx.
68+
- **[Deploy as uwsgi application](/deployment/uwsgi)** explains how to deploy uwsgi web application using reverse proxy with Apache mod_proxy_uwsgi module or Nginx.
69+
- **[Deploy as http application](/deployment/standalone-web-server)** explains how to deploy HTTP web application using reverse proxy with Apache mod_proxy_http module or Nginx or as stand-alone web server.
70+
- **[Deploy Fano web application with web server as load balancer](/deployment/load-balancer-setup)** explains how to deploy and load balance several Fano Framework web applications using Apache or Nginx load balancer.
7171

7272
## Debugging
7373

Diff for: utilities/rate-limit/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ To be able to tell which clients exceed limit, throttle middleware need to be ab
8787
Currently, Fano Framework provides two implementations of this interface.
8888

8989
- `TIpAddrRequestIdentifier` which identifies request based on IP address.
90-
- `TSessionRequestIdentifier` which identifies request based on session ID.
90+
- `TSessionRequestIdentifier` which identifies request based on [session ID](/working-with-session).
9191

9292
By default, request is identified using its IP address. To change request identifier instance, call `requestIdentifier()` method of factory and pass new instance
9393

0 commit comments

Comments
 (0)