溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux服務(wù)器下如何實(shí)現(xiàn)Nginx與Apache共存

發(fā)布時間:2021-07-14 14:28:25 來源:億速云 閱讀:253 作者:小新 欄目:服務(wù)器

這篇文章主要為大家展示了“Linux服務(wù)器下如何實(shí)現(xiàn)Nginx與Apache共存”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Linux服務(wù)器下如何實(shí)現(xiàn)Nginx與Apache共存”這篇文章吧。

同一個端口是不能同時有兩個程序監(jiān)聽的。所以換個思路解決同一臺服務(wù)器下某些網(wǎng)站運(yùn)行在nginx下,某些網(wǎng)站運(yùn)行在Apache下共存。

解決思路:

將nginx作為代理服務(wù)器和web服務(wù)器使用,nginx監(jiān)聽80端口,Apache監(jiān)聽除80以外的端口,我這暫時使用8080端口。

Linux服務(wù)器下如何實(shí)現(xiàn)Nginx與Apache共存

解決方案:

  • 在Linux 一經(jīng)搭建好環(huán)境 先后安裝了Nginx 和Apache 由于 默認(rèn)端口都是:80

  • 一般客戶請求的服務(wù)器端口默認(rèn)為80 所以Nginx作為靜態(tài)頁端口設(shè)置:80;Apache設(shè)置端口為:8080(在httpd.conf 文件中修改Listen:8080)

Apache下的網(wǎng)站:

在nginx.conf中 添加

server {
   listen  80;
   server_name www.one.ityangs.cn one.ityangs.cn;
location / {
   proxy_pass    http://127.0.0.1:8080;
   proxy_redirect   off;
   proxy_set_header Host $host;
   proxy_set_header X-Real-IP $remote_addr;
   proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
   }
}

在httpd.conf中 添加

<virtualhost *:8080>
ServerName www.one.ityangs.cn
ServerAlias www.one.ityangs.cn one.ityangs.cn
DocumentRoot /www/one
DirectoryIndex index.php index.html
<Directory /www/one>
Options +Includes +FollowSymLinks -Indexes
AllowOverride All
Order Deny,Allow
Allow from All
</Directory>
</virtualhost>

Nginx下的網(wǎng)站:

在nginx.conf中 添加

 server {
  listen  80;
  server_name two.ityangs.cn www.two.ityangs.cn;
  root /www/two;
  location /{
   index index.html index.htm index.php;
    if (!-e $request_filename) {
    rewrite ^(.*)$ /index.php?s=$1 last;
    break;
   }
   error_page 404 /var/www/html/404.html;
  }
  location ~ \.php(.*)$ {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    fastcgi_param PATH_INFO $fastcgi_path_info;
    fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
    include  fastcgi_params;
  }
}

以上是“Linux服務(wù)器下如何實(shí)現(xiàn)Nginx與Apache共存”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI