溫馨提示×

nginx.conf中的server塊如何配置

小樊
135
2024-08-14 01:20:36
欄目: 編程語言

在nginx.conf中的server塊配置如下:

server {
    listen 80;
    server_name example.com;

    location / {
        root /var/www/html;
        index index.html;
    }

    location /api {
        proxy_pass http://localhost:3000;
    }
}

這個例子中,server塊設(shè)置監(jiān)聽端口為80,server_name為example.com。在location /指令中配置了根目錄和默認首頁文件,同時在location /api中配置了反向代理到本地的3000端口。根據(jù)實際需求,可以根據(jù)需求配置更多的location和指令。

0