Nginx

一个不太会测试的测试發表於2024-10-15
  1. apt-get update
  2. apt-get install nginx
  3. sudo systemctl start nginx
  4. sudo systemctl status nginx出現以下介面代表啟動成功,如果出現圖二,就修改檔案許可權
    sudo chown nginx:nginx /run/nginx.pid
    sudo chmod 644 /run/nginx.pid

  5. 檢視防火牆狀態ufw status
    status :inactive代表沒有啟用
  6. nginx配置檔案在/etc/nginx/nginx.conf,此處配置檔案中還include了兩個配置檔案mime.types是字元等配置檔案,於是檢視conf.d/目錄下的配置檔案
  7. conf.d/下存在default.conf,新增如圖location塊,即可透過訪問/helin/路徑訪問到/usr/share/nginx/html下的love.html
    切記修改完配置檔案後,nginx -t 檢視配置檔案是否有錯誤
    重新載入已經重啟(可不執行)
    systemctl reload nginx
    systemctl restart nginx
  8. 可以在/usr/share/nginx/html直接編寫txt文件,如下圖love.txt,那麼可以透過http://ip/love.txt訪問到該txt檔案

相關文章