인증을 위해 Apache를 구성하는 방법

인증을 위해 Apache를 구성하는 방법

저는 Netgear Readynas 212를 가지고 있고 공유 디렉터리를 설정하려고 합니다.

공유는 /data/에 있습니다. 여기서 /data/share/는 나열되어야 하는 폴더입니다.

NAS에서 네트워크 액세스의 초기 공유는 /data/share/입니다.

/etc/apache2/sites-available/000-default.conf

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    DocumentRoot /data/share
    <Directory /data/share>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            Require all granted
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

a2ensite 000-default.confconf를 기본값으로 설정 했습니다

엔진을 다시 작성할 수도 있습니다.a2enmod rewrite

/data/share의 .htaccess

    # Apache Autoindex Directives
Options +Indexes 
IndexOptions ShowForbidden
IndexOptions FancyIndexing HTMLTable SuppressRules ShowForbidden
IndexOptions IconsAreLinks ScanHTMLTitles NameWidth=* DescriptionWidth=*

# Autoindex-Strapdown Directives
AddType text/plain .md
HeaderName HEADER.md
ReadmeName README.md

# Customize by setting theme and title
IndexHeadInsert "<script>conf = {theme: 'cyborg', title: 'Mitarbeiterverzeichnis'};</script> \
<script src='http://ais.habilis.net/autoindex_strapdown.js'></script> \
<link rel='stylesheet' href='http://ais.habilis.net/autoindex_strapdown.css'>"

# Icons using Bootstrap's Glyphicon set
DefaultIcon http://ais.habilis.net/icons/pdf.png
AddIcon https://10.0.1.222/icons/blank.png ^^BLANKICON^^
AddIcon https://10.0.1.222/icons/folder-open.svg ^^DIRECTORY^^
AddIcon https://10.0.1.222/icons/back.png ..
AddIconByType (TXT,https://10.0.1.222/icons/file.svg) text/*
AddIconByType (IMG,https://10.0.1.222/icons/picture.svg) image/*
AddIconByType (SND,https://10.0.1.222/icons/music.png) audio/*
AddIconByType (VID,https://10.0.1.222/icons/film.png) video/*

아이콘을 다운로드하고 목록 공유에 해당 폴더를 만들었지만 브라우저를 사용하여 디버깅할 때 아이콘을 설정하지 않았음에도 불구하고 응답 .gif가 여전히 누락되었습니다.

여기에 이미지 설명을 입력하세요.

나도 사용해봤는데ramlmn의 디렉토리 목록,성공하지 못했습니다.

어쩌면 누군가 내가 무엇을 놓치고 있는지 알고 있을지도 모릅니다.

관련 정보