[techtalk] Apache/Proxy not caching Linux client

2000-10-22 Thread Subba Rao
I am using Apache 1.3.14 on Linux. The proxy module has been configured for caching. When I access from Windows boxes, the proxy module seems to be caching the permitted sites. When I revist the sites, the pages are served from the cache. When I try to go to the same sites from the Linux system

[techtalk] directory that is writable by web server process

2000-10-22 Thread m20bi
I need to make a directory to which my web server process (httpd, I think) has read/write access. How do I go about doing this? I'm using RedHat 6.2 and Apache 1.3.12. Barbara ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/

Re: [techtalk] directory that is writable by web server process

2000-10-22 Thread Malcolm Tredinnick
On Sun, Oct 22, 2000 at 06:27:44PM -0400, m20bi wrote: > I need to make a directory to which my web server process (httpd, I think) > has read/write access. How do I go about doing this? I'm using RedHat 6.2 > and Apache 1.3.12. Barbara The httpd process (which is, indeed, the correct one) runs a

[techtalk] Inetd Server

2000-10-22 Thread antonxie
Dear All,   on RH6.2, I think Inetd is automatically installed and runn... but I don't know whether Inetd would need configuration...and how... and tell me how to check if inetd is working can i put some html files /in which directory?  so I can check it from any webbrowser   Thanks  

[techtalk] Apache Server

2000-10-22 Thread antonxie
Dear all I have serendipitously tried it on my web browser http://202.143.143.54  and it showed an apache page saying "It worked" then I tried using the computer name http://S04 and it's also worked but where should I start uploading web pages and please tell me can above addresses be acces

Re: [techtalk] directory that is writable by web server process

2000-10-22 Thread Eric Richard Turner
Assuming the web server is running as nobody, make the directory, change the group on the directory, then change the permissions. Here's an example of making directory foo which is writeable by the httpd process: /bin/mkdir ./foo chgrp nobody ./foo/ chmod 550 ./foo/ If at all possible you should

Re: [techtalk] Inetd Server

2000-10-22 Thread Eric Richard Turner
To find out if inetd is started, running the following command will show something like "63 ? S 0:00 /usr/sbin/inetd" in the output: ps -x | grep "inted" The place to configure inetd is in /etc/inetd.conf. Details about inetd can be found using "man inetd", but the basics of the /etc/inetd.con

Re: [techtalk] Apache Server

2000-10-22 Thread Eric Richard Turner
It works from http://202.143.143.54. To find out where to store your html documents, check the value of the DocumentRoot directive in http.conf. My http.conf file is located in /var/lib/apache/conf/, but that's on a Slackware system. Actually, if you can find your httpd.conf file then the location

Re: [techtalk] directory that is writable by web server process

2000-10-22 Thread Eric Richard Turner
OOPS! I only gave read and execute permissions... chmod 770 ./foo/ On Sun, 22 Oct 2000, Eric Richard Turner wrote: > chmod 550 ./foo/ -- My public OpenPGP key can be found at http://www.wwu.edu/~turnere/turnere.asc ___ techtalk mailing list [EMAIL P

Re: [techtalk] Inetd Server

2000-10-22 Thread Eric Richard Turner
OK, I'm having a bad night. I think it's time for bed :-) ps -x | grep "inetd" Eric R. Turner On Sun, 22 Oct 2000, Eric Richard Turner wrote: > ps -x | grep "inted" -- My public OpenPGP key can be found at http://www.wwu.edu/~turnere/turnere.asc ___

Re: [techtalk] Inetd Server

2000-10-22 Thread Robert Wade
On Mon, 23 Oct 2000, antonxie wrote: > Dear All, > > on RH6.2, I think Inetd is automatically installed and runn... inetd is a standard unix networking daemon which listens to ports specified by the servers listed in its configuration file, /etc/inetd.conf. It is usually run at startup in yo

Re: [techtalk] Apache Server

2000-10-22 Thread Christian MacAuley
> I have serendipitously tried it on my web browser > http://202.143.143.54 and it showed an apache page saying "It worked" > then I tried using the computer name http://S04 and it's also worked > but where should I start uploading web pages > and please tell me can above addresses be accesse