Mastering Nginx
...
Rewrite Rule Guide This appendix is meant to introduce the rewrite module in NGINX and serve as a guide for creating new rules a ...
Rewrite Rule Guide [ 266 ] The second part of a rewrite rule is the URI to which the request is rewritten. The URI may contain a ...
Appendix B [ 267 ] As an example, we want to set a short text as the output for a file not found error in a particular location. ...
Rewrite Rule Guide [ 268 ] # note the quotes around the regular expression - these are # required because we used {} within the ...
Appendix B [ 269 ] The following table summarizes the rewrite module directives we discussed in this section: Table: Rewrite mod ...
Rewrite Rule Guide [ 270 ] Directive Explanation rewrite Changes the URI from one matched by the regular expression in the first ...
Appendix B [ 271 ] For example, if you have a home controller to handle default traffic, but can also reach that controller thro ...
Rewrite Rule Guide [ 272 ] location /images/ { rewrite ^(/images)/(.*)\.(png|jpg|gif)$ $1/$3/$2.$3 break; } } Passing new query ...
Appendix B [ 273 ] Before NGINX had the try_files directive, there would be no choice but to use if to test for the existence of ...
Rewrite Rule Guide [ 274 ] Of course, what is inside the location context is dependent upon your setup, but the principle remain ...
Appendix B [ 275 ] In the opposite case, where no www is desired, we enter the following rule: RewriteCond %{HTTP_HOST} ^www Rew ...
Rewrite Rule Guide [ 276 ] root /home/www/site1; } server { server_name site2.example.com; root /home/www/site2; } server { serv ...
Appendix B [ 277 ] RewriteRule ^/$ /homepage.min.html [L] RewriteRule ^/$ /homepage.std.html [L] This can be translated to an NG ...
...
The NGINX Community NGINX is not only supported by a vibrant community, but also has a company to back it now, too. Igor Sysoev, ...
The NGINX Community [ 280 ] IRC channel The IRC channel #nginx at irc.freenode.net is a real-time resource for those interested ...
Appendix C [ 281 ] Once the problem has been defined, the next step is describing how that problem can be reproduced: Calling ht ...
...
Persisting Solaris Network Tunings In Chapter 8, Troubleshooting Techniques, we saw how to change different network tuning param ...
«
8
9
10
11
12
13
14
15
16
17
»
Free download pdf