博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx
阅读量:6658 次
发布时间:2019-06-25

本文共 1115 字,大约阅读时间需要 3 分钟。

 

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

 

http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm

#rpm nginx-release-centos-6-0.el6.ngx.noarch.rpm -ivh

1.8.0-1.el6.ngx

 

wget http://nginx.org/keys/nginx_signing.key

#sudo rpm --import nginx_signing.key

 

Options:

-?,-h : this help
-v : show version and exit
-V : show version and configure options then exit
-t : test configuration and exit
-q : suppress non-error messages during configuration testing
-s signal : send signal to a master process: stop, quit, reopen, reload
-p prefix : set prefix path (default: /etc/nginx/)
-c filename : set configuration file (default: /etc/nginx/nginx.conf)
-g directives : set global directives out of configuration file

Start Ngnix

#ngnix

安装完成后
默认nginx配置文件: /etc/nginx/nginx.conf         【nginx主要的配置文件】 
默认nginx的ssl配置文件: /etc/nginx/conf.d/ssl.conf 【配置SSL证书的,也可以并入到nginx.conf文件里】 
默认nginx的虚拟主机配置文件: /etc/nginx/conf.d/virtual.conf 【如同Apache的虚拟主机配置,也可以并入到nginx.conf文件里】 
默认的web_root文件夹路径: /usr/share/nginx/html 【web目录夹,放置Magento主程序】 

 

转载于:https://www.cnblogs.com/baxk/p/4997171.html

你可能感兴趣的文章
对软件工程的理解
查看>>
(39.2). Spring Boot Shiro权限管理【从零开始学Spring Boot】
查看>>
Automator 简单使用流程
查看>>
前端性能监控平台showslow+Yslow搭建
查看>>
Automated Whitebox Fuzz Testing
查看>>
何为JQuery对象?
查看>>
fastdfs安装详细
查看>>
cocos2d-x中CCLabelAtlas的小图片拼接
查看>>
编译安装httpd
查看>>
按日期、时间批量删除文件
查看>>
Tomcat使用IDEA远程Debug调试
查看>>
tmpFile.renameTo(classFile) failed解决
查看>>
php中括号定义数组
查看>>
linux centos 搭建svn
查看>>
2.Nginx优化
查看>>
如何获取浏览器URL中查询字符串的参数?
查看>>
Array.prototype.slice.call()为什么能将类数组转换为数组
查看>>
matlab练习程序(粒子群优化PSO)
查看>>
POJ1157 LITTLE SHOP OF FLOWERS
查看>>
防盗链与springboot代理模式(图片文件转发)
查看>>