আমি পরীক্ষার জন্য সমস্ত অনুরোধের পরীক্ষার জন্য একটি বেসিক ভার্চুয়াল হোস্ট সেট আপ করার চেষ্টা করছি 12 আমি যে ওয়েবইব্রিক সার্ভারটি চালাচ্ছি তার জন্য 127.0.0.1:8080 এ চলছি স্থানীয় অনুরোধগুলিকে / var / www এ আমার স্থির ফাইলগুলিতে যাওয়ার জন্য। আমি উবুন্টু 10.04 চালাচ্ছি।
আমার কাছে লিবাপাছে ২-মোড-প্রক্সি-এইচটিএমএল ইনস্টল করা আছে এবং আমি মডিউলটি এএনএমড প্রক্সি সহ সক্ষম করে রেখেছি। আমি আমার ভার্চুয়াল হোস্টটি সক্ষম করে রেখেছি। যাইহোক, আমি যখনই পরীক্ষায় যাই oc
[Thu Mar 03 01:43:10 2011] [warn] proxy: No protocol handler was valid for the URL /. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
এখানে আমার ভার্চুয়াল হোস্ট:
<VirtualHost test.local:80>
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
ServerAdmin webmaster@localhost
ServerName test.local
ProxyPreserveHost On
# prevents this folder from being proxied
ProxyPass /static !
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>
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/
ErrorLog /var/log/apache2/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access.log combined
এবং মোড_প্রক্সির জন্য আমার সেটিংস এখানে রয়েছে:
<IfModule mod_proxy.c>
#turning ProxyRequests on and allowing proxying from all may allow
#spammers to use your proxy to send email.
ProxyRequests Off
<Proxy *>
# default settings
#AddDefaultCharset off
#Order deny,allow
#Deny from all
##Allow from .example.com
AddDefaultCharset off
Order allow,deny
Allow from all
</Proxy>
# Enable/disable the handling of HTTP/1.1 "Via:" headers.
# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
# Set to one of: Off | On | Full | Block
ProxyVia On
</IfModule>
কেউ কি জানেন যে আমি কী ভুল করছি? ধন্যবাদ