命名規則: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