nginx二級域名配置

CentOs下nginx二級域名配置

域名配置文件

  • 命名規則:XXX.域名信息.conf
  • 配置文件路徑:etc/nginx/conf.d/xxxx.conf
  • 配置文件內容:server {

    listen 80;(監聽端口)
    server_name xxxx.com;(域名名稱)
    index index.php index.html index.htm;(入口文件)php

    set $root_path '/home/www/phalcon.codinuts.com/XXX/public';(入口文件所在文件地址)
    include /etc/nginx/conf.inc/phalcon;
    }html

服務器的重啓

  • 服務器通常路徑:etc/init.d/nginx
  • 服務器重啓命令:nginx -s reload

服務器當前文件所在目錄權限賦予

  • 到達當前文件目錄地址
  • 權限命令: chown www:www -R ./ 即爲:chown 用戶組:用戶組 -R 目錄地址

以上即爲centos下nginx服務器的二級域名配置詳解。

相關文章
相關標籤/搜索