共计 1538 个字符,预计需要花费 4 分钟才能阅读完成。
系统版本 CentOS 7.0
Nginx 版本 Nginx1.8.0
tar zxf nginx-1.8.0.tar.gz
cd nginx-1.8.0/
vim auto/cc/gcc
注释 debug 可以减小安装后的大小
vim src/core/nginx.h
隐藏 nginx 版本信息
# 解决软件包依赖性
yum install -y pcre-devle
yum install -y openssl-devel
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module
# 编译
--with-http_ssl_module 开启 HTTP SSL 模块 支持 https 请求
make
make install
以下操作是给 nginx 一个安全认证的 key, 就可以开始使用
cd /etc/pki/tls/certs/
make nginx.pem ## 建立安全认证文件,在其中填写信息
mv nginx.pem /usr/local/nginx/conf/
编辑配置文件
vim /usr/local/lnmp/nginx/conf/nginx.conf
server {117 listen 443 ssl;
118 server_name localhost;
119
120 ssl_certificate nginx.pem;
121 ssl_certificate_key nginx.pem;
122
123 ssl_session_cache shared:SSL:1m;
124 ssl_session_timeout 5m;
125
126 ssl_ciphers HIGH:!aNULL:!MD5;
127 ssl_prefer_server_ciphers on;
128
129 location / {130 root html;
131 index index.php index.html index.htm;
132 }
133 }
开启服务
nginx
更多 Nginx 相关教程见以下内容:
CentOS 6.2 实战部署 Nginx+MySQL+PHP http://www.linuxidc.com/Linux/2013-09/90020.htm
Ubuntu 16.04 下安装部署 Nginx+uWSGI+Django1.9.7 http://www.linuxidc.com/Linux/2016-07/133484.htm
搭建基于 Linux6.3+Nginx1.2+PHP5+MySQL5.5 的 Web 服务器全过程 http://www.linuxidc.com/Linux/2013-09/89692.htm
CentOS 6.3 下 Nginx 性能调优 http://www.linuxidc.com/Linux/2013-09/89656.htm
CentOS 6.3 下配置 Nginx 加载 ngx_pagespeed 模块 http://www.linuxidc.com/Linux/2013-09/89657.htm
CentOS 6.4 安装配置 Nginx+Pcre+php-fpm http://www.linuxidc.com/Linux/2013-08/88984.htm
Nginx 安装配置使用详细笔记 http://www.linuxidc.com/Linux/2014-07/104499.htm
Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm
Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-08/133852.htm