20,398
社区成员




server {
listen 80;
server_name www.abuwo.com;
root /storage/www/abc.com;
error_page 500 502 503 504 /50x.html;
access_log logs/abc.com.access.log;
location = /50x.html {
root html;
}
location / {
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?/$1;
}
}
location ~*\.php$ {
try_files $uri = 404;
fastcgi_pass phpfpm;
fastcgi_index index.php;
include fastcgi.conf;
}
}
10.96.112.238 abc1.com
10.96.112.238 abc2.com
是同一个IP地址后面接很多个不同的域名么?