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

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

nginx+php基础架构

生产实践

  1. nginx配置文件:

主配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[root@linux-node1 conf.d]
# cat /etc/nginx/nginx.conf
user nginx;
worker_processes auto;
error_log 
/var/log/nginx/error
.log;
pid 
/run/nginx
.pid;
 
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include 
/usr/share/nginx/modules/
*.conf;
 
events {
    
worker_connections 1024;
}
 
http {
    
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  
/var/log/nginx/access
.log  main;
 
    
sendfile            on;
    
tcp_nopush          on;
    
tcp_nodelay         on;
    
keepalive_timeout   65;
    
types_hash_max_size 2048;
 
    
include             
/etc/nginx/mime
.types;
    
default_type        application
/octet-stream
;
 
    
include 
/etc/nginx/conf
.d/*.conf;
    
}
 
[root@linux-node1 conf.d]
#

include配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[root@linux-node1 conf.d]
# cat bbs.conf 
server {
        
listen       80;
        
server_name  bbs.sense.com;
        
access_log  
/tmp/bbs
.log  main;
        
location / {
            
root   
/www/bbs
;
            
index  index.html index.htm;
        
}
        
location ~ .*\.(php|php5)?$ {
            
root 
/www/bbs
;
            
fastcgi_pass  192.168.56.14:9000;  
            
fastcgi_index index.php;
            
include fastcgi.conf;
        
}
    
}
[root@linux-node1 conf.d]
# cat  www.conf 
server {
        
listen       80;
        
server_name www.sense.com;
        
access_log  
/tmp/www
.log  main;
        
location / {
            
root   
/www/www
;
            
index  index.html index.htm;
        
}
        
location ~ .*\.(php|php5)?$ {
            
root 
/www/www
;
            
fastcgi_pass  192.168.56.12:9000;
            
fastcgi_index index.php;
            
include fastcgi.conf;
        
}
    
}
[root@linux-node1 conf.d]
#

2.后台php需要开启900端口,也就是说要编译或者安装php,php的监听的地址修改为本机的ip地址,不能在是127.0.0.1了 否则nginx无法代理

3.nginx每个项目代码需要保存一份,php后台每个项目需要保存一份,代码目录要一致

静态的html用户请求 请求的是nginx上面的代码,动态的请求,请求的php服务器上面的代码

举一个简单的例子:bbs.sense.com 的代码在nginx上面/www/bbs 下保存一份,也得在php所在的服务器上面的/www/bbs 下面保存一份,静态的请求请求nginx服务器的代码,动态的请求请求php服务器的代码

上面基础架构存在问题:nginx单点  php单点  nginx单点可以用keepalived解决,但是php单点必须得增加后端服务器,如果增加后端的服务器,那么nginx应该怎么配置呢

第二种架构

nginx主配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[root@linux-node1 www]
# cat /etc/nginx/nginx.conf
user nginx;
worker_processes auto;
error_log 
/var/log/nginx/error
.log;
pid 
/run/nginx
.pid;
 
# Load dynamic modules. See /usr/share/nginx/README.dynamic.
include 
/usr/share/nginx/modules/
*.conf;
 
events {
    
worker_connections 1024;
}
 
http {
    
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  
/var/log/nginx/access
.log  main;
 
    
sendfile            on;
    
tcp_nopush          on;
    
tcp_nodelay         on;
    
keepalive_timeout   65;
    
types_hash_max_size 2048;
 
    
include             
/etc/nginx/mime
.types;
    
default_type        application
/octet-stream
;
     
upstream  fastcgiserver {
     
server 192.168.56.12:9000;  
##此时是同一代码
     
server 192.168.56.14:9000;  
##此时是同一代码
   
}
    
include 
/etc/nginx/conf
.d/*.conf;
    
}
 
[root@linux-node1 www]
#

nginx include配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[root@linux-node1 conf.d]# cat www.conf 
server {
        
listen       80;
        
server_name www.sense.com;
        
access_log  /tmp/www.
log  
main;
        
location / {
            
root   /www/www;
            
index  index.html index.htm;
        
}
        
location ~ .*\.(php|php5)?$ {
            
root /www/www;
            
fastcgi_pass  fastcgiserver;  #此处有修改
            
fastcgi_index index.php;
            
include fastcgi.conf;
        
}
    
}
[root@linux-node1 conf.d]#

这样做是轮询的方式从后端的php日志依然能够得出来,静态文件还是请求nginx动态文件还是请求php服务器,nginx和后端的php服务器组依然要部署和nginx相同路径的代码

本文转自 小小三郎1 51CTO博客,原文链接:http://blog.51cto.com/wsxxsl/1975109,如需转载请自行联系原作者
你可能感兴趣的文章
.NET解决[Serializable] Attribute引发的Json序列化k_BackingField
查看>>
springboot 常用插件
查看>>
算法笔记_031:计算中值和选择问题(Java)
查看>>
一个基于特征向量的近似网页去重算法——term用SVM人工提取训练,基于term的特征向量,倒排索引查询相似文档,同时利用cos计算相似度...
查看>>
[转]Newtonsoft.Json高级用法
查看>>
35个Java代码性能优化总结
查看>>
Spring+SpringMVC+MyBatis+easyUI整合基础篇(一)项目简述及技术选型介绍
查看>>
第一百五十一节,封装库--JavaScript,表单验证--密码确认验证--回答验证--电子邮件验证加自动补全...
查看>>
vue实例
查看>>
(zhuan) LSTM Neural Network for Time Series Prediction
查看>>
instance “error” 了怎么办?- 每天5分钟玩转 OpenStack(159)
查看>>
针对监控摄像机(海康、大华等)进行手动录像的录像文件播放器功能设计
查看>>
dedecms自定义表单提交成功后提示信息修改和跳转链接修改
查看>>
分享一个前后端分离的轻量级内容管理框架
查看>>
android Fragment 笔记
查看>>
JAXB:Java对象序和XML互相转化的利器
查看>>
web页面防盗链功能使用--request.getHeader("Referer")
查看>>
AAuto如何设置定时器
查看>>
idea Error:(1, 10) java: 需要class, interface或enum, 未结束的字符串文字,Error:(55, 136) java: 非法字符: \65533...
查看>>
Java Code Examples for org.apache.ibatis.annotations.Insert
查看>>