nginx的安装及基本配置,及多个域名服务
程序员文章站
2022-04-18 14:57:52
...
centos6.x yum默认没有nginx的软件包
安装方式:
到nginx下载页面http://nginx.org/en/linux_packages.html#stable,复制CENTOS 6的nginx软件源安装包
运行命令:wget http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
安装rpm包 yum install nginx-release-centos-6-0.el6.ngx.noarch.rpm -y , 此步实际只是加入了nginx的软件包源
执行 yum install nginx -y 就可以安装好nginx了
安装方式:
到nginx下载页面http://nginx.org/en/linux_packages.html#stable,复制CENTOS 6的nginx软件源安装包
运行命令:wget http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
安装rpm包 yum install nginx-release-centos-6-0.el6.ngx.noarch.rpm -y , 此步实际只是加入了nginx的软件包源
执行 yum install nginx -y 就可以安装好nginx了
nginx默认安装为linux的服务
使用service nginx start, stop, restart, try-restart, reload, force-reload, status来操作nginx
nginx的配置文件默认读取/etc/nginx/nginx.conf文件
nginx的配置都是由 directives组成,directives由简单指令或者区块指令组成
简单指令:listen 80;
区块指令由{}包含,区块指令又可以包含多个简单指令和区块指令:
http {
server {
}
}
http可以有多个server,多个server可以监听多个端口在同一服务器为多个应用提供服务。
但如果你同时有多个域名www.you.com,news.you.com, mail.you.com在同一个服务器进行服务,那么www.you.com,mail.you.com:8080, news.you.com:81这样的访问方式显然是不合适显然是不合适的,幸运的是nginx已经提供了通过域名过滤的规则
server
{
listen 80;
server_name www.you.com;
location / {
#....
proxy_pass http://localhost:8880;
}
##### other directive
}
server
{
listen 80;
server_name news.you.com;
location / {
#....
proxy_pass http://localhost:8881;
}
##### other directive
}
server
{
listen 80;
server_name mail.you.com;
location / {
#....
proxy_pass http://localhost:8882;
}
##### other directive
}
最终分别运行各个应用监听对应端口即可。
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });以上就介绍了 nginx的安装及基本配置,及多个域名服务,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
下一篇: PHP获取站点源目录
推荐阅读
-
Nginx下配置pathinfo及ThinkPHP的URL Rewrite模式支持
-
CentOS6.5环境安装nginx服务器及负载均衡配置操作详解
-
nginx安装及配置支持php的教程(全)
-
Linux中的进程守护supervisor安装配置及使用
-
Centos7安装PHP及Nginx的教程详解
-
Windows Apache2.2.11及Php5.2.9-1的安装与配置方法
-
Mysql安装与配置调优及修改root密码的方法
-
linux下vsftpd的安装及配置使用详细步骤(推荐)
-
Nginx中的用户认证配置及阻止用户使用代理访问的方法
-
Windows系统下Nginx服务器的基本安装和配置方法介绍