আমি বেশ কয়েকটি নিবন্ধ পড়েছি এবং স্ট্যাক এক্সচেঞ্জের উপর ঝুঁটি পেয়েছি, তবে সমস্যাটি সমাধান করতে পারিনি। আমার দুটি ডোমেন নাম রয়েছে এবং আমি তাদের প্রত্যেকের জন্য ভার্চুয়াল হোস্ট তৈরি করতে চাই। আমি পৃথক ফোল্ডার তৈরি করেছি, যেখানে আমি প্রতিটি ডোমেনের জন্য index.html হোস্ট করি । আমি একটি কনফিড ফাইলও তৈরি করেছি, / ইত্যাদি / অ্যাপাচি ২ / সাইট- এর আওতায় ফাইলগুলি নীচে রয়েছে:
NameVirtualHost x.x.x.x:80
<VirtualHost x.x.x.x:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName example1.org
ServerAlias www.example1.org
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/org/public_html
#Options +FollowSymlinks
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
#<Directory /var/www/html/org/public_html>
# Options -Indexes +FollowSymLinks +MultiViews
# AllowOverride All
# Require all granted
#</Directory>
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/example1aorg-error.log
CustomLog ${APACHE_LOG_DIR}/example1org-access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
<VirtualHost x.x.x.x:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
ServerName example2.com
ServerAlias www.example2.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/com/public_html
#Options +FollowSymlinks
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
#<Directory /var/www/html/com/public_html>
# Options -Indexes +FollowSymLinks +MultiViews
# AllowOverride All
#</Directory>
LogLevel warn
ErrorLog ${APACHE_LOG_DIR}/example2com-error.log
CustomLog ${APACHE_LOG_DIR}/example2com-access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
হাতের সর্বজনীন IP হয়
example1 এবং example2 ডোমেইনের আমি কাজ করছি, কিন্তু ডামি ডোমেইনের নয়।
যখন আমি আমার সার্ভারে ডোমেইন লোড করার চেষ্টা করুন, সার্ভার সবসময় আমার জন্য সূচক ফাইল দেখায় example1 ।
আমি কী করব তা নিশ্চিত নই, মনে হচ্ছে ভার্চুয়াল হোস্ট দুটি ডোমেন নিয়ে কাজ করবে না।
সম্পাদনা করুন: আমি এখনও এটি বুঝতে পারি না, এখানে আমার ডোমেন নামগুলি রয়েছে: www.asanteniafrica.com www.asanteniafrica.org
আমি বিশ্বাস করতে চাই এটি ডোমেনের .org এবং .com অংশের সাথে করার জন্য আমি কিছু গবেষণা করছি।
curl example1.com
এবংcurl example2.com
বা আপনার ব্রাউজার খুলুন ব্যক্তিগত / ছদ্মবেশী মোড। আমি প্রায়শই আমাকে ভুল ফলাফল দেখিয়ে ব্রাউজারের ক্যাশে কামড়েছিলাম। এছাড়াও সঙ্গে চেকcurl -IL example1.com
এবংcurl -IL example2.com
একটি পুনঃচালনা ঘটছে যদি নেই। @Scuba_mike ইতিমধ্যে উল্লিখিত হিসাবে, আপনার লগ ফাইল তাকান।