내 서버 PC 용 우분투 12.04 서버 에디션을 설치했습니다. 램프 서버를 설치했습니다. var / www 위치를 보조 하드 디스크 위치로 변경해야합니다. 나는 gedit / etc / apache2 / sites-available / default에 너무 많은 시간을 구성했다. 여기에 내 코드가있다.
<VirtualHost *:80>
ServerAdmin webmaster@localhost
#DocumentRoot /var/www
DocumentRoot /media/myserver/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
#<Directory /var/www/>
<Directory /media/myserver/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
또한 사용
sudo chown -R var/www /media/myserver/
과
chmod -R 755 /media/myserver/
여전히 내 / media / myserver에 연결할 수 없으며 브라우저에 다음 메시지가 표시됩니다.
Forbidden
You don't have permission to access / on this server.
내 var / www에서 myserver를 마운트하는 방법을 알려주십시오. 미리 감사드립니다.