nginx php mysql 多個站點

nginx php mysql 多個站點

我在設定 Nginx/php 將服務請求路由到不同網站時遇到問題。我們在Web 應用程式中創建了一項服務,將內容推送到nginx 託管的網站(實際上是Web 伺服器php 腳本上的服務調用,該腳本將內容寫入資料庫,nginx 使用php 將其呈現在網站上)。根網站(網站 A)一切正常。請求被接收並寫入 MySql 資料庫到資料庫 A,網站讀取正常。問題在於網站 B,發送到網站 B 的每個要求都會被網站 A 接收並寫入資料庫 A,而不是寫入資料庫 B。

我嘗試使用 php-fpm 將它們分開,但沒有成功。我對 nginx/php 配置的經驗很少,因此我們將不勝感激。需要什麼樣的設定才能實現這一目標。

到目前為止我已經嘗試過的。

在 php pool.d 資料夾中建立了一個新池。 siteB.conf,其內容是。

; Start a new pool named 'www'. 
; the variable $pool can be used in any directive and will be replaced by the 
; pool name ('www' here) [siteB]
user = www-data group = www-data
listen = /run/php/php7.0-fpm-siteB.sock
listen.owner = www-data 
listen.group = www-data
listen.allowed_clients = 127.0.0.1
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3

?我是否需要襪子值/端口,是否需要將用戶/群組從 www-group 更改為另一個用戶。

資料夾內var/www/html/php/service有一個 php 腳本,它連接到 mysql 資料庫並寫入第一個網站(網站 A)的內容。

在 nginx 伺服器上,我有幾個網站(全部透過連接埠 80 存取),每個網站在 mysql 資料庫中都有自己的資料庫檔案。所有其他站點都有相同的設定(例如var/www/siteB/php/service

當指向 IP 位址時http:/siteA/php/service一切正常,內容將寫入對應的資料庫。

當指向一個位址時,http://siteB/php/service內容不會被寫入。從 nginx 為網站頁面提供服務效果很好,除了資料庫內容(未寫入資料庫檔案)之外,所有網站都會載入。

所以我猜測我需要配置 nginx 才能正確地將請求路由到 siteB,我該如何做到這一點。

我的 nginx 設定是

user www-data;
worker_processes auto;
pid /run/nginx.pid;

events {
worker_connections 768;
# multi_accept on;
}

http {

##
# Basic Settings
##

sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;

 server_names_hash_bucket_size 64;
# server_name_in_redirect off;

include /etc/nginx/mime.types;
default_type application/octet-stream;

##
# SSL Settings
##

ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;

##
# Logging Settings
##

access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;

##
# Gzip Settings
##

gzip on;
gzip_disable "msie6";

# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/javascript 
text/xml application/xml application/xml+rss text/javascript;

##
# Virtual Host Configs
##

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}


#mail {
#   # See sample authentication script at:
#   # http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#   # auth_http localhost/auth.php;
#   # pop3_capabilities "TOP" "USER";
#   # imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#   server {
#       listen     localhost:110;
#       protocol   pop3;
#       proxy      on;
#   }
# 
#   server {
#       listen     localhost:143;
#       protocol   imap;
#       proxy      on;
#   }
#}

相關內容