【轉】通過HTTP服務訪問FTP伺服器檔案(配置nginx+ftp伺服器)
阿新 • • 發佈:2018-12-10
1.前提
已安裝配置好nginx+ftp服務
2.配置Nginx 伺服器
2.1進入nginx 配置檔案目錄:
cd /usr/local/nginx/conf
vim nginx.conf
2.2 修改配置檔案:有兩種方式
①方式一:在配置檔案server{}中location /{} 修改配置
1 #預設請求 2 location / { 3 root /home/ftpuser/www;#定義伺服器的預設網站根目錄位置 4 index index.html index.php index.htm;#定義首頁索引檔案的名稱 5 }
②方式二:在http{}內配置新服務
server { listen 8080; server_name localhost; #charset utf-8; #access_log logs/host.access.log main; #預設請求 location / { root /home/ftpuser/www;#定義伺服器的預設網站根目錄位置 index index.html index.php index.htm;#定義首頁索引檔案的名稱 } }