💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 实现虚拟主机 #### Step 1:准备工作 ~~~ # ifconfig eth0:0 192.168.111.20 ~~~ 1. 建立两个站点目录 ~~~ # mkdir /website1 # mkdir /website2 ~~~ 2. 建立两个存放日志的目录 ~~~ # mkdir /var/log/nginx/website1 # mkdir /var/log/nginx/website2 ~~~ 3. 创建两个测试页 ~~~ # echo "This is website1" >/website1/index.html # echo "This is website2" >/website2/index.html ~~~ #### Step 2:修改配置文件 原有的配置文件中默认有一个server节点,修改一下,然后再添加一个server节点 ~~~ server { listen 192.168.111.10:80; server_name localhost; #charset koi8-r; access_log /var/log/nginx/website1/access.log; error_log /var/log/nginx/website1/error.log; location / { root /website1; index index.html index.htm; } error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } server { listen 192.168.111.20:80; server_name localhost; #charset koi8-r; access_log /var/log/nginx/website2/access.log; error_log /var/log/nginx/website2/error.log; location / { root /website2; index index.html index.htm; } error_page 404 /404.html; # redirect server error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } ~~~ 此文件在Nginx安装目录下的conf里面的nginx.conf里面修改 #### Step 3:使用 ./nginx -s reload重新装在配置 在终端里面进入到nginx目录下的sbin,然后使用: `./nginx -s reload` 命令重载。 * * * * * https://www.cnblogs.com/Brad-Lee/p/6258693.html