关于spring:搭建文件服务器

3次阅读

共计 1148 个字符,预计需要花费 3 分钟才能阅读完成。

下载 httpd

yum install -y httpd

看看胜利了没有

http://localhost

配置监听端口和暗藏目录

vim /etc/httpd/conf/httpd.conf

批改端口

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 9090

去掉 Indexes,这样页面就看不到目录构造了

<Directory "/var/www/html/file">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    Options   FollowSymLinks

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
</Directory>
systemctl restart httpd
netstat -nltp | grep 9090

指定目录

先到默认的映射地址下

cd /var/www/html/

接下来加一个软件映射寄存文件的目录

ln -s /opt/file/ file

拜访

http://localhost:9090/file/

正文完
 0