【在 Ubuntu 上配置 Nginx 作为 Web 服务器】

时间:2024-02-18 21:34:03
  • Nginx 的配置文件位于 /etc/nginx/sites-available/ 目录下。你可以创建一个新的配置文件来配置你的 Web 应用。
  • 使用文本编辑器如 nanovim 编辑 Nginx 配置文件,例如:
    sudo nano /etc/nginx/sites-available/myapp
    
  • 在配置文件中添加类似以下内容的配置,替换 <your_domain><path_to_web_app> 为你自己的域名和 Web 应用路径:
    server {
        listen 80;
        server_name <your_domain>;
    
        location / {
            root <path_to_web_app>;
            index index.html;
        }
    }