Results 1 through 20 while searching for: "apache"
How do you install ssl enabled apache on Ubuntu?
Here's one way: root# apt-get install apache2 ssl-cert root# a2enmod ssl root# mkdir /etc/apache2/ssl root# make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/apache.pem root# cat <<EOF > /etc/apache2/sites-available/ssl NameVirtua [...]
http://rockfloat.com/board/post/?id=592
June 06, 2008 @02:15 (Replies: 0) (Rank: 0.061)
apache
How do you avoid restarting Apache all the time when working with mod_python?
First put this in your Apache vhost configuration: PythonAutoReload On PythonDebug On Then make sure Apache isn't running, and start it up manually telling it to run as a single process. Here's how I do it on Gentoo Linux: user$ sudo /usr/ [...]
http://rockfloat.com/board/post/?id=574
May 26, 2007 @07:07 (Replies: 0) (Rank: 0.061)
apache
What are the mod_python apache code constants?
From /usr/lib/python2.3/site-packages/mod_python/apache.py ## Some constants HTTP_CONTINUE = 100 HTTP_SWITCHING_PROTOCOLS = 101 HTTP_PROCESSING = 102 HTTP_OK = 200 H [...]
http://rockfloat.com/board/post/?id=61
May 15, 2005 @01:21 (Replies: 0) (Rank: 0.061)
apache
Denying requests from a particular directory
If you have a directory of files that you need to deny access to then this is one way to do it. It comes in handy in the event someone posts a direct link to the one of the files to a really popular message board. <Directory "/path/to/directory"> [...]
http://rockfloat.com/board/post/?id=541
October 24, 2006 @16:24 (Replies: 0) (Rank: 0.061)
apache
Manage runlevel scripts on debian or ubuntu
To add apache2 to the default runlevel: update-rc.d apache2 defaults To remove apache2 from the default runlevel: update-rc.d -f apache2 remove http://gentoo-wiki.com/TIP_Converting_from_or_to_Debian#Debian_6
http://rockfloat.com/board/post/?id=561
March 20, 2007 @21:47 (Replies: 0) (Rank: 0.000)
How do you search for symlinks in a given directory, say to delete them?
I copied my local Tango directory from my distribution so i could serve up the images via Apache, but I didn't want the symlinks that were throughout the directory structure. Here's what I used to find, and then delete the links: user# find /home [...]
http://rockfloat.com/board/post/?id=550
December 04, 2006 @04:30 (Replies: 0) (Rank: 0.000)
Apache slow to respond due to lack of entropy - and it says no PID file when starting?
If Apache2: * accepts connections * does not respond to clients * creates exactly one process * is not stopped by Then you probably don't have enough entropy in your system. This happens when the computer sits idle much of the time. [...]
http://rockfloat.com/board/post/?id=528
November 08, 2005 @02:47 (Replies: 0) (Rank: 0.000)
How do you run test.py after installing mod_python via portage?
Here's what I use: http://rockfloat.com/files/public/?d=/ebuilds/mod_python user# sudo emerge -a mod_python user# tar zxvf mod_python-3.2.5b.tgz user# cd mod_python-3.2.5b user# ./configure --with-apxs=/usr/sbin/apxs2 user# cp /usr/lib/apac [...]
http://rockfloat.com/board/post/?id=497
November 15, 2005 @07:41 (Replies: 0) (Rank: 0.000)
How do you filter top to restrict it's output?
One way is to run top: user# top And then type the letter u and then type the name of a user, for example: u apache This would filter the output to only show processes owned by apache. It's als helpfull to hit f which will give you a me [...]
http://rockfloat.com/board/post/?id=498
November 18, 2005 @15:32 (Replies: 0) (Rank: 0.000)
How do you configure apache to rotate it's log files so they don't become to large?
On apache you can use the rotatelogs program to do this for you. On apache2 my httpd.conf or vhosts file looks like this: ErrorLog /path-to-logs/error_log CustomLog "|/usr/sbin/rotatelogs2 /path-to-logs/access_log 86400" combined this will rot [...]
http://rockfloat.com/board/post/?id=82
March 08, 2004 @22:04 (Replies: 0) (Rank: 0.000)
How can you check to see what versions of a particular package are available in gentoo's portage?
try this: user# etcat -v apache user# etcat -v opera user# etcat -v gimp note that this requires app-portage/gentoolkit user# sudo emerge -p gentoolkit John M.
http://rockfloat.com/board/post/?id=22
February 02, 2004 @02:56 (Replies: 0) (Rank: 0.000)
on gentoo how do you reset /etc/init.d/apache2 when it gets confused if the service is running?
you could try: root# /etc/init.d/apache2 zap if this doesn't work, you'll need to stop apache manualy and then start it using init.d John M.
http://rockfloat.com/board/post/?id=407
January 01, 2004 @23:55 (Replies: 0) (Rank: 0.000)
when sending mail using php from gentoo linux i'm getting: apache@_HOSTNAME_ not found
this is because the ssmtp server on gentoo does a reverse lookup of the domain... what you need to do is edit /etc/ssmtp/ssmtp.conf and edit to look something like: mailhub=your.mail.host.com hostname=some.valid.dns.domain.name gentoo uses a [...]
http://rockfloat.com/board/post/?id=92
December 06, 2003 @03:05 (Replies: 0) (Rank: 0.000)
how to add a secure user to apache
try this: htpasswd -c /usr/local/etc/httpd/users martin the -c will create the file if it's not there already John M.
http://rockfloat.com/board/post/?id=222
October 25, 2002 @03:01 (Replies: 0) (Rank: 0.000)
how can you setup apache to support multiple domains
There are may ways to support multiple domains, here is one way using ip based virtual hosts: 1. add this line to the end of your httpd.conf: Include /location/of/apache/install/conf/vhosts.conf 2. then make a file called /location/of/apac [...]
http://rockfloat.com/board/post/?id=228
August 07, 2002 @13:41 (Replies: 0) (Rank: 0.000)
how to set a custom 404 page with apache
Add this line to your site configuration (where "/" represents the root of your web dir): ErrorDocument 404 /foobar.html John M.
http://rockfloat.com/board/post/?id=226
August 07, 2002 @13:35 (Replies: 0) (Rank: 0.000)
Re: apache broken after changing permissions
the httpd (apache) server is usually ran under the user of "nobody." So this means that your web files need execute permissons for the user "nobody" John M.
http://rockfloat.com/board/post/?id=477
April 23, 2002 @05:37 (Replies: 0) (Rank: 0.000)
apache broken after changing permissions
I was changing permissions on some web files.... and now apache gives a permissions error when it tries to serve the page John M.
http://rockfloat.com/board/post/?id=445
April 23, 2002 @05:35 (Replies: 1) (Rank: 0.000)
Re: how do you compile php for use with apache
I think a really nice way to complile php is as a "dynamically shared object" of apache. To acomplish this, complile php like this: ./configure --with-apxs=/location/of/apache/bin/apxs --with-pgsql --with-mysql this will load php into apach [...]
http://rockfloat.com/board/post/?id=437
April 04, 2002 @13:40 (Replies: 0) (Rank: 0.000)
Re: how do you configure apache
A really nice way to configure apache is enabling "most" of the modules it supports. For a newbie, it's way too easy... do this once your inside the unpacked apache directory: ./configure --prefix=/apache/destination --enable-module=most --en [...]
http://rockfloat.com/board/post/?id=436
April 04, 2002 @13:37 (Replies: 0) (Rank: 0.000)
1 2

Total records: 22
FCGI/WSGI
0.7.0
79.166889 ms