)
基于Web的APT SOURCE网络源题目详细1、提供当前版本系统软件的网络安装源。2、用户通过URLhttp://81.6.63.100/uos/配置apt访问路径且能够通过浏览器在线访问目录下的文件列表。作答过程 在Web的基础上添加nginx的配置文件rootispsrv:/mut/crypt/uos#cat /etc/nginx/conf.d/public.conf EOFserver{listen80;root /mut/crypt;index index.php;server_name public.chinaskills.cn;location ~\.php${include snippets/fastcgi-php.conf;fastcgi_pass unix:/run/php/php7.3-fpm.sock;}location /uos/{autoindex on;alias/mut/crypt/uos/;}}EOF