只是臨時搭建的一個下載服務,因此就直接用nginx來咯html
將域名解析到要部署應用對應的服務器,就是個解析操做,沒啥好講的nginx
# mkdir /data/install/
配置並從新載入配置文件服務器
# vi /usr/local/nginx/conf/nginx.conf location /myfiles { alias /data/install/; # 文件存放目錄要以 '/' 結尾; index index.html; autoindex on; # 自動列出目錄下的文件; autoindex_exact_size off; # 文件大小按 G、M 的格式顯示; } # service nginx reload
http:// <域名> /myfiles/ code