level 1
dognar
楼主
server {
# 端口
listen 80;
listen [::]:80;
# web文档根
root /var/www/html/thinkphp5study/public;
# 入口文件名
index index.php index.html;
# 访问url
server_name thinkphp5study.com;
#日志
access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass 127.0.0.1:9000;
}
}
2018年05月10日 05点05分
1
# 端口
listen 80;
listen [::]:80;
# web文档根
root /var/www/html/thinkphp5study/public;
# 入口文件名
index index.php index.html;
# 访问url
server_name thinkphp5study.com;
#日志
access_log /var/log/nginx/example.com.access.log;
error_log /var/log/nginx/example.com.error.log;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass 127.0.0.1:9000;
}
}
