网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

Nginx学习笔记(一)-创新互联

Nginx学习笔记(一)

创新互联是专业的台江网站建设公司,台江接单;提供网站建设、成都网站建设,网页设计,网站设计,建网站,PHP网站建设等专业做网站服务;采用PHP框架,可快速的进行台江网站开发网页制作和功能扩展;专业做搜索引擎喜爱的网站,专业的做网站团队,希望更多企业前来合作!

一、Nginx的特点与作用

    Nginx可以更快地响应请求。

    Web和反向代理服务器

    支持非常多的服务器软件特性

    处理静态资源

    用作反向代理

    用作负载均衡

二、Nginx编译安装

 2.1 准备工作

  操作系统:CentOS7.3 IP地址:10.0.0.110

yum install -y gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel

 2.2 添加用户

useradd -r nginx

 2.3 编译安装

    ./configure --prefix=/usr/local/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --user=nginx --group=nginx --with-http_ssl_module --with-http_v2_module --with-http_dav_module --with-http_stub_status_module --with-threads --with-file-aio

   make && make install

三、简单web站点配置

 3.1设置环境变量

 vi /etc/profile.d/nginx.sh #在最后一行加入下面字段

 export PATH="$PATH:/usr/local/nginx/sbin/"

 3.2启动nginx

 nginx

 3.3配置nginx的web站点

 说明:站点A:www.huwho.cn URL映射的根目录:/nginx/web

   站点B:blog.huwho.cn URL映射的根目录:/nginx/blog

 编译配置文件

  vi /etc/nginx.conf

  站点A配置段如下:

server {         listen       80;         server_name  www.huwho.cn;             root /nginx/web;             index index.html;         #charset koi8-r;         #access_log  logs/host.access.log  main;         location /p_w_picpaths/ {             root   /nginx/;         }         #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;         }

  站点B配置段如下:

 server {         listen 80;         server_name blog.huwho.cn;         root /nginx/blog;         index index.html;         error_page   500 502 503 504  /50x.html;         location = /50x.html {             root   html;       } }

 3.4测试nginx语法

[root@pxe31 nginx]# nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful

 3.5重载nginx

[root@pxe31 nginx]# nginx -s reload

 3.6站点目录以及文件配置

 mkdir /nginx/{web,blog}

 echo www.huwho.cn > /nginx/web/index.html

 echo blog.huwho.cn > /nginx/blog/index.html

 3.7修改windows的hosts文件

Nginx学习笔记(一)

 3.8访问测试

  Nginx学习笔记(一)

Nginx学习笔记(一)

另外有需要云服务器可以了解下创新互联cdcxhl.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


文章标题:Nginx学习笔记(一)-创新互联
本文路径:http://bjjierui.cn/article/cdpshg.html

其他资讯