ติดตั้ง Ubuntu 11.04 พร้อม apache2 และแพ็คเกจที่เกี่ยวข้องทั้งหมดที่ติดตั้ง ฉันได้ลองบล็อกส่วนใหญ่และทำให้ google และฟอรัมอื่นเป็นเพื่อนที่ดีที่สุดของฉัน แต่ฉันไม่สามารถแก้ไขปัญหานี้ได้
ฉันต้องการตั้งค่าโฮสต์เสมือนที่มีชื่อในระบบท้องถิ่นของฉันเพื่อการพัฒนา
ฉันสร้างไดเรกทอรี "vivek" ใน/var/www
และคัดลอก index.html เริ่มต้นและแก้ไของค์ประกอบบางอย่าง
ฉันเพิ่มไฟล์vivek.com
ใน/etc/apache2/sites-available
ดังนี้
# Ensure that Apache listens on port 80
Listen 80
# Listen for virtual host requests on all IP addresses
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.vivek.com
DocumentRoot /var/www/vivek
# Other directives here
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/vivek/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/>
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>
นั่นคือฉันได้เพิ่มบรรทัดต่อไปนี้
# Ensure that Apache listens on port 80
Listen 80
# Listen for virtual host requests on all IP addresses
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.vivek.com
DocumentRoot /var/www/vivek
# Other directives here
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/vivek/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
</VirtualHost>
ไปยังไฟล์เริ่มต้นที่มีอยู่แล้วในโฟลเดอร์ "sites-available" (เอาไฟล์สำรองเริ่มต้นก่อนที่จะแก้ไข)
เพิ่มสิ่งนี้ในไฟล์โฮสต์ที่มีอยู่ใน / etc / hosts
127.0.0.1 localhost
127.0.1.1 vivek-PC
127.0.0.1 www.vivek.com
ดำเนินการต่อไปนี้โดยไม่มีข้อผิดพลาด:
root@vivek-PC:~# a2ensite vivek.com
Enabling site vivek.com.
Run '/etc/init.d/apache2 reload' to activate new configuration!
root@vivek-PC:~# /etc/init.d/apache2 reload
* Reloading web server config apache2
เมื่อฉันป้อนwww.vivek.com
มันทำให้ฉันเป็นค่าเริ่มต้น index.html /var/www
แต่ไม่มีอยู่ในโฟลเดอร์ / var / www / vivek ซึ่งแก้ไข
ต่อมาฉันแก้ไข index.html จาก/var/www
แต่ฉันยังคงได้รับ index.html เดิม (เริ่มต้นก่อนการแก้ไข) index.html ทั้งหมดได้รับการแก้ไข แต่ Apache ดูเหมือนจะมีบางอย่างที่ซ่อนอยู่ซึ่งจะเกิดขึ้นเมื่อฉันขอwww.vivek.com
และสิ่งที่น่าขันก็คือหลังจากที่ฉันเริ่มต้นใหม่ - Apache ขึ้นมาได้ดี แต่เว็บไซต์ของฉัน - www.vivek.com
ล้มเหลวในการแสดง (แม้จะมี index.html ซึ่งเป็นที่ซ่อนพระเจ้ารู้อยู่ที่ไหน !!) .. ตอนนี้เบราว์เซอร์ของฉันแสดงว่า "ไม่สามารถเชื่อมต่อได้ "
โปรดช่วยฉันพยายามตั้งค่านี้มาหนึ่งสัปดาห์แล้วโดยไม่ประสบความสำเร็จ