|
我nginx配置了DZ和UC,UC已經安裝完了,現在準備安裝DZ,選擇了連結現有的UC,但是報錯了,我的nginx配置的listen是sock,php也是sock,但是不知道為什么連結不上
- server {
- listen unix:/www/a/dz/dz.sock;
- server_name _;
- access_log /etc/nginx/logs/dzonionaccess.log;
- error_log /etc/nginx/logs/dzonionerror.log;
- location / {
- root /www/DiscuzX/upload/;
- index index.php index.html index.htm;
- }
- location ~ \.php$ {
- root /www/DiscuzX/upload/;
- fastcgi_pass unix:/run/php/php8.3-fpm.sock;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
- }
- server {
- listen unix:/www/a/ucenter/ucenter.sock;
- server_name _;
- access_log /etc/nginx/logs/ucenteronionaccess.log;
- error_log /etc/nginx/logs/ucenteronionerror.log;
- location / {
- root /www/UCenter/upload/;
- index index.php index.html index.htm;
- }
- location ~ \.php$ {
- root /www/UCenter/upload/;
- fastcgi_pass unix:/run/php/php8.3-fpm.sock;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
- }
復制代碼
截圖202508242030569257.jpg (140.03 KB, 下載次數: 0)
下載附件
2025-8-24 20:30 上傳
截圖202508242031362949.jpg (137.94 KB, 下載次數: 0)
下載附件
2025-8-24 20:31 上傳
截圖202508242032185005.jpg (125.48 KB, 下載次數: 0)
下載附件
2025-8-24 20:32 上傳
|
|