波多野结衣国产一区二区三区_今日头条app下载安装_外国毛片视频_大色综合色综合网站

IDC知識庫
IDC領域專業知識百科平臺

PHP虛擬主機用配置環境嗎

PHP虛擬主機用配置環境嗎。

我們在Centos7上手工部署了Nginx+PHP的運行環境,然而并沒有說到虛擬主機多個站點的部署方法,此文將繼續記錄Nginx虛擬主機多站點的一些部署及注意細節。

Nginx安裝路徑:/usr/local/nginx

Nginx主配置:/usr/local/nginx/nginx.conf

默認網站目錄:/usr/local/nginx/html

如果您的配置和當前的配置不一樣,注意將文中路徑替換。

準備工作

建網站目錄以及配置目錄

#創建網站目錄及網站產生的日志存放目錄
mkdir /mnt/web/example/wwwroot -p
mkdir /mnt/web/example/log -p

#創建 nginx 加載的虛擬主機配置存放目錄
mkdir /usr/local/nginx/vhost

#增加配置文件引入
vi /usr/local/nginx/nginx.conf
#在 http 段尾部增加 include /usr/local/nginx/vhost/*.conf;

#創建默認文件
echo "<?php phpinfo();>" > /mnt/web/example/wwwroot/index.php
echo "hi example.com" > /mnt/web/example/wwwroot/index.html

#設置權限
chown -R php-fpm:www /mnt/web
chmod -R 775 /mnt/web

配置文件

普通虛擬主機配置(不支持PHP)

增加一個網站配置

cd /usr/local/nginx/vhost
vi example.conf

配置文件內容如下

log_format soshash.log.format '$remote_addr - $remote_user [$time_local] $request'
        '$status $body_bytes_sent $http_referer '
        '$http_user_agent $http_x_forwarded_for';
server {
        listen       80;
        server_name example.com www.example.com *.demo.example.com;
        index index.html index.htm index.php;
        root  /mnt/web/example/wwwroot;
        access_log  /mnt/web/example/log/access.log example.log.format;
        error_log  /mnt/web/example/log/error.log;
}

域名綁定(server_name):

  • 單域名:server_name www.example.com
  • 多域名:server_name www.example.com php.example.com
  • 泛域名:server_name *.demo.example.com
  • 以及正則匹配域名。域名可以綁定多個,只需要用空格分割開即可。

默認文件(index):按照優先順序顯示默認網頁。

網站目錄(root):填寫我們預先創建的網站目錄。

訪問日志文件(access_log):

  • access_log 產生日志文件存儲路徑 日志內容的格式(example.log.format)
  • example.log.format 相當于變量一樣,需要提前聲明。
  • 最新版本的 nginx(1.12.0)需要 將log_format 放置到 server段外部,否則會報一個類似:nginx: [emerg] “log_format” directive is not allowed here in xxx 的錯誤。

錯誤日志文件(error_log):

  • #error_log ?logs/error.log;
  • #error_log ?logs/error.log ?notice;
  • #error_log ?logs/error.log ?info;

重載nginx配置

/usr/local/nginx/nginx -s reload

PHP虛擬主機配置(支持PHP)

解析域名并測試訪問

http://www.example.com/index.html ?有效

http://www.example.com/index.php ?錯誤(下載資源文件)

顯然是我們的虛擬主機沒有對PHP文件進行加載執行

給虛擬主機文件增加配置,如下:

log_format soshash.log.format '$remote_addr - $remote_user [$time_local] $request'
        '$status $body_bytes_sent $http_referer '
        '$http_user_agent $http_x_forwarded_for';
server {
        listen       80;
        server_name example.com www.example.com *.demo.example.com;
        index index.html index.htm index.php;
        root  /mnt/web/example/wwwroot;

        #新增配置如下
	    location ~ .*\.(php|php5)?$ {
	    	fastcgi_pass 127.0.0.1:9000;
		    fastcgi_index index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  SCRIPT_NAME $fastcgi_script_name;
		    include fastcgi_params;
	    }
        access_log  /mnt/web/example/log/access.log example.log.format;
        error_log  /mnt/web/example/log/error.log;
}

重載nginx

/usr/local/nginx/nginx -s reload

再次測試通過。

類同,配置其他多個虛擬主機也一樣如此簡單。

多版本PHP簡單說明

對于多版本PHP的話,只需要將其他PHP編譯安裝到另外一個目錄,配置網站時監聽對應的端口即可。

如:/usr/local/php/php7/

修改配置:php-fpm.conf

listen = 127.0.0.1:9001

對應nginx虛擬主機的配置更改

	    location ~ .*\.(php|php5)?$ {
	    	fastcgi_pass 127.0.0.1:9001;#不同端口對應不同php版本
		    fastcgi_index index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  SCRIPT_NAME $fastcgi_script_name;
		    include fastcgi_params;
	    }

異同之處只有這些,配置起來是比較簡單的。

浜戣櫄鎷熶富鏈?
在哪里租用的虛擬主機和網站空間,就要在哪里進行網站備案,網站備案需要提供完整真實的資料,否則無法通過,推薦來域名頻道,一站式服務。
所有的虛擬主機都自帶強大的管理面板,即使你不懂程序,一般情況下也能正常使用。
虛擬主機是基于最新的容器技術、熱遷移技術和百度生態能力提供的新一代網站主機服務。集高性能、高可靠性、高安全性和高易用性于。
推薦美國虛擬主機服務商:域名頻道http://m.fascinatingdeals.com/webhost/vhost_usa.asp

贊(2)
分享到: 更多 (0)

中國專業的網站域名及網站空間提供商

買域名買空間