Nginx
From KevinWiki
Contents |
Nginx
NginX is a lightweight open source Web server .
Installation
$ sudo apt-get install nginx
Configuration
Remove Server Info
Version
Modify /etc/nginx/nginx.conf
server_tokens off;
Server Info in Response Header
- Remove server info in the response header
Install extra modules for changing header
$ sudo apt-get install nginx-extras
- Add the following line to the http block in the
/etc/nginx/nginx.conf
.
more_set_headers 'Server: server';
PHP
$ sudo apt-get install php5-fpm