要托管多个网站,我更新了/ etc / nginx / default文件,如下所示:
server {
listen 8080;
server_name test;
root /var/www/test;
client_max_body_size 3096M;
location ~* \.(jpg|jpeg|png|gif|ico|css|js){
expires max;
}
}
此后,我将/ etc / hosts文件编辑为:
IP address localhost test;
最后一步:
service nginx restart / service nginx reload
使用http://test访问网站,但是它正在重定向到localhost并显示Ubuntu安装页面。