Nginx的安装和配置

1.安装说明:

系统环境:Ubuntu 14.04.3 LTS

软件:nginx-1.8.0.tar.gz

安装位置:/opt/nginx

2.安装

需要用到的安装包:

openssl-fips-2.0.10.tar.gz

zlib-1.2.8.tar.gz

pcre-8.37.tar.gz

nginx-1.8.0.tar.gz

安装顺序依次为:openssl、zlib、pcre, 然后安装Nginx包

2.1安装openssl-fips-2.0.2.tar.gz

tar –zxvf openssl-fips-2.0.10.tar.gz

cd openssl-fips-2.0.10

./config

make

make install

2.2 安装zlib-1.2.8.tar.gz

tar –zxvf zlib-1.2.8.tar.gz

cd zlib-1.2.8

./configure

make

make install

2.3安装pcre-8.37.tar.gz (需安装编译c++环境: apt-get install build-essential)

在安装pcre-8.37.tar.gz之前需要安装c++编译环境,否则在执行./configure时会报错。

apt-get install build-essential

tar –zxvf pcre-8.37.tar.gz

cd pcre-8.37

./configure

make

make install

2.4安装nginx-1.8.0.tar.gz

tar -zxvf nginx-1.8.0.tar.gz

cd nginx-1.8.0

./configure --with-pcre=../pcre-8.37 --with-zlib=../zlib-1.2.8 --with-openssl=../openssl-fips-2.0.10

make

make install

至此Nginx的安装完成!

检测nginx是否安装成功

cd /usr/local/nginx/sbin

./nginx –t

出现如下所示提示,表示安装成功

root@wcyong :/usr/local/nginx/sbin# ./nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

启动nginx

./ngixn

查看端口:

netstat -tnlp  | grep nginx

root@wcyong :/usr/local/nginx/sbin# netstat -tnlp | grep nginx

tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      2957/nginx

并且通过浏览器访问

3.nginx负载均衡配置

打开 /usr/local/nginx/conf/nginx.conf 配置文件,做如下配置即可:

user  root root;
worker_processes  1;
 
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
error_log  logs/error.log  warn;
 
pid        logs/nginx.pid;
 
 
events {
    worker_connections  1024;
}
 
 
http {
    include       mime.types;
    default_type  application/octet-stream;
 
    #log_format  main  ‘$remote_addr - $remote_user [$time_local] "$request" ‘
    #                  ‘$status $body_bytes_sent "$http_referer" ‘
    #                  ‘"$http_user_agent" "$http_x_forwarded_for"‘;
 
    #access_log  logs/access.log  main;
 
    sendfile        on;
    #tcp_nopush     on;
 
    #keepalive_timeout  0;
    keepalive_timeout  65;
 
    #gzip  on;
 
    #设定负载均衡的服务器列表
    upstream myserver{
     server 192.168.1.171:8080;
                 server 192.168.1.172:8080;
                 server 192.168.1.173:8080;
    }
 
    #侦听服务器信息
    server {
        listen       80;
        server_name  192.168.1.110;
       
        #charset koi8-r;
 
        #access_log  logs/host.access.log  main;
 
        location / {
                         #root   html;
                         #index  index.html index.htm;
                         proxy_pass http://myserver;
                         proxy_redirect off;
                         proxy_set_header Host $host;
                         proxy_set_header X-Real-IP $remote_addr;
                         #后端的Web服务器可以通过X-Forwarded-For获取用户真实IP
                         proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
 
        #error_page  404              /404.html;
 
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
 
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
 
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}
 
        # deny access to .htaccess files, if Apache‘s document root
        # concurs with nginx‘s one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }
 
 
    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;
 
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
 
 
    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;
 
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;
 
    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;
 
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;
 
    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}
 
}
时间: 2024-10-10 13:20:36

Nginx的安装和配置的相关文章

Ubuntu中Nginx的安装与配置

Ubuntu中Nginx的安装与配置 1.Nginx介绍 Nginx是一个非常轻量级的HTTP服务器,Nginx,它的发音为“engine X”, 是一个高性能的HTTP和 反向代理服务器,同时也是一个IMAP/POP3/SMTP 代理服务器. 2.对PHP支持 目前各种web 服务器对PHP的支持一共有三种: (1)通过web 服务器内置的模块来实现,例如Apache的mod_php5,类似的Apache内置的mod_perl 可以对perl支持. (2)通过CGI来实现,这个就好比之前per

mac下nginx的安装和配置,已经相关设置(转帖)。

mac下nginx的安装和配置: 链接:https://www.jianshu.com/p/026d67cc6cb1 前端项目中nginx 本地反向代理配置: 链接:https://www.jianshu.com/p/5c23b09d443f 原文地址:https://www.cnblogs.com/sidianok/p/12204020.html

Nginx+PHP7 安装及配置

今天花了几个小时折腾了下Nginx+PHP7编译安装和配置,写个博文记录下. 系统环境:centos6.5 x64 软件版本:nginx-1.10.0 php-7.0.6 安装 Nginx Nginx官网:http://nginx.org/ 先安装编译依赖的一些组件 yum install pcre pcre-devel openssl openssl-devel -y 1.解压程序包 tar xf nginx-1.10.0.tar.gz  cd nginx-1.10.0 2.预编译配置参数 .

Ubuntu中Nginx的安装与配置全过程

1. 在终端运行命令:$sudo apt-get install nginx ubuntu安装Nginx之后的文件结构大致为: 所有的配置文件都在/etc/nginx下,并且每个虚拟主机已经安排在了/etc/nginx/sites-available下 启动程序文件在/usr/sbin/nginx 日志放在了/var/log/nginx中,分别是access.log和error.log 并已经在/etc/init.d/下创建了启动脚本nginx 默认的虚拟主机的目录设置在了/usr/share/

linux Ubuntu下php+mysql+nginx的安装与配置

系统环境:Ubuntu12,13,14 安装软件PHP+MySQL+nginx 安装之前更新系统软件:apt-get update  操作都在root权限下进行 打开终端进入root 一,MySQL 安装 :apt-get install mysql-server  在安装的过程中要求输入root密码, 登录成功,不要忘记输入密码.注意一下,密码是不可见得哦,系统root用户和MySQL的root用户不是同一个用户 二,PHP安装及对MySQL的支持 :apt-get install php5

linux服务之nginx的安装及配置(centos)

Ubuntu/CentOS 系统上安装与配置Nginx 一.在线安装: Ubuntu:sudo apt-get install nginx CentOS: sudo yum install nginx 二.安装后的位置: 1.服务地址:/etc/init.d/nginx 2.配置地址:/etc/nginx/ 如:/etc/nginx/nginx.conf 3.Web默认目录:/usr/share/nginx/http/ 如:usr/share/nginx/index.html 4.日志目录:/v

【Linux 初学】Nginx的安装与配置(五)

1. 从官网 http://nginx.org/en/download.html  上下载稳定版本  nginx-1.8.0.tar.gz tar -zxvf nginx-1.8.0.tar.gz 解压到 /usr/local/nginx 2.设置一下配置信息 ./configure --prefix=/usr/local/nginx ,或者不执行此步,直接默认配置 (1)执行后可能报错:checking for OS + Linux 2.6.32-358.el6.x86_64 x86_64ch

Nginx-CentOS7下Nginx的安装与配置

前述 我这里只写了CentOS7下的安装与配置关于其他的这的那的,看看这个小兄弟写的把还挺全 https://www.cnblogs.com/zhouxinfei/p/7862285.html 操作 步骤1: 下载Nginx  wget "http://nginx.org/download/nginx-1.12.2.tar.gz" 步骤2: 安装依赖的包  yum -y install gcc-c++  yum -y install pcre-devel  yum -y install

linux环境下Nginx的安装、配置及使用

因为工作环境大多数都是windows server服务器,仅有的linux服务器同事们都在抢着用,所以特意买了一台阿里云服务器,感兴趣的小伙伴可以了解一下,一年只要293: https://promotion.aliyun.com/ntms/act/qwbk.html?userCode=tmy8r0z0 系统版本:CentOS7.4 64位  当我吭哧吭哧安装好nginx可以正常访问之后,手贱输入了yum install nginx然后发现居然可以这样下载安装!!!只是安装的版本是1.12.2,