nginx简单配置动静分离
时间:2021-07-01 10:21:17
帮助过:6人阅读
server {
listen 80;
server_name www.linux.com;
index index.html index.htm;
root /data0/htdocs/www;
location ~ (\.php)$ {
proxy_pass http://192.168.1.188:80;
}
以上就介绍了nginx简单配置动静分离,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。