summaryrefslogtreecommitdiff
path: root/usr.sbin/httpd
AgeCommit message (Collapse)Author
2002-09-10only use socklen_t for OpenBSD >= 2.6Henning Brauer
requested by the apache guys (Jeff Trawick)
2002-09-09move OpenSSL include upHenning Brauer
2002-09-09clean: cleanmanHenning Brauer
2002-09-09add src/modules/keynote/Makefile to MUNGEDFILESHenning Brauer
2002-09-08missing include for evp.h; ok henning@Markus Friedl
2002-09-06socklen_t, not int.Henning Brauer
2002-09-04remove some unnecessary casts and adjust format stringsHenning Brauer
looked over by dhartmei@
2002-09-01more appropriate comments about UserDir.Henning Brauer
Partitially from Sam Smith.
2002-08-15$OpenBSD$ for modules with local changesHenning Brauer
2002-08-15$OpenBSD$Henning Brauer
2002-08-022 missing #includesHenning Brauer
2002-07-31#ifdef MOD_SSL for OpenSSL initializationHenning Brauer
pointed out buy Stephane Engel Thankski!
2002-07-31use fdcache for RewriteLog.Henning Brauer
pointed out by Stephane Engel sengel at melshake dot com, who also tested this Thank you very much!
2002-07-30strip_chroot here as well.Henning Brauer
pointed out by sengel at melshake dot com
2002-07-30two more strip_chrootHenning Brauer
found by Steph <sengel@melshake.com>, who also tested this. I'm very happy with the way you help here. Thanks a lot.
2002-07-29fix -u description in httpd -h: we don't chroot into DocumentRoot butHenning Brauer
ServerRoot. noticed by "Aaron Yourk" <ayourk@srt.com>
2002-07-27Fix art link, PR #2840Miod Vallat
2002-07-26few more $(SHELL); "Aaron Yourk" <ayourk@srt.com>Henning Brauer
2002-07-22don't try to recheck the pathes to server.crt and .key once chrootedHenning Brauer
makes graceful restarts work when running SSL.
2002-07-22don't attempt to chroot if we are already chrooted ;-)Henning Brauer
(happens on SIGHUP aka apachectl restart)
2002-07-22sync ICONFILES with realityHenning Brauer
2002-07-22we document '-F' as introduced with apache 1.3.26 in httpd(8).Henning Brauer
apache people don't.
2002-07-20short -u description in httpd -hHenning Brauer
pointed out by Sam Smith
2002-07-20remove pre-apache-1.3.26 cruftHenning Brauer
Note for upgraders: to actually see the current manual, you should do find /var/www/htdocs/manual/ -type f -exec rm {} \; cd /usr/src/usr.sbin/httpd/ make -f Makefile.bsd-wrapper distribution you will also need a current httpd.conf, MultiViews need to be enabled in /var/www/htdocs/manual/
2002-07-19don't try to find a "suitable" bourne shell for subcommands, just use ourHenning Brauer
/bin/sh, it is fine. Sam Smith <S@mSmith.net> reported a breakage in case bash in installed, and dhartmei@ analyzed, as far as I can see from the old mail sam forwarded me.
2002-07-19sync MANUALPAGES with realityHenning Brauer
2002-07-19enable multiviews in the manual dir.Henning Brauer
now this is more than just a collection of dead links.
2002-07-19sync w/ apache 1.3.26Henning Brauer
2002-07-19mergeHenning Brauer
2002-07-19import apache 1.3.26 + mod_ssl 2.8.10Henning Brauer
2002-07-17un-KNF to match apache source code style. requested by theo.Henning Brauer
2002-07-17correctly free() all list members in _closeall.Henning Brauer
10x markus
2002-07-17KNFHenning Brauer
I slacked again. 10x markus.
2002-07-17we have both SYSVSEM_SERIALIZED_ACCEPT and FLOCK_SERIALIZED_ACCEPT. allowHenning Brauer
both and default to SYSVSEM. pointed out by Jeff Trawick <trawick@attglobal.net> on dev@httpd.apache.org
2002-07-17use fdcache as wellHenning Brauer
2002-07-17get rid of the "Unclean shutdown" warning if started in secure mode.Henning Brauer
this warning is issued if an old pid file exists. As we cannot remove our pidfile on shutdown (lack of priviledges) this warning always occured.
2002-07-17o add ap_server_chroot_desired in http_main which just returns ap_server_chrootHenning Brauer
o fdcache clean up on exit o use fdcache for mod_log_config. survives graceful restarts now as long as no new logfile has to be opened. the latter is impossible because we lack the permission to do so once started.
2002-07-17introduce fdcache, a simple wrapper to keep a copy of fds outsideHenning Brauer
server_conf. needed to make the mod_log_* modules survive graceful restarts. has to be used with great care, as of now only appropriate for logfiles.
2002-07-16correct error messageHenning Brauer
2002-07-15nuke more leftovers from pre-1.3.24Henning Brauer
2002-07-15nuke old, unused, pre-apache-1.3.24 leftoversHenning Brauer
2002-07-15don't try things we are not able to do if chrooted on graceful restarts.Henning Brauer
this does not mean a chrooted httpd survives a graceful restart (yet).
2002-07-12chroot awareHenning Brauer
testing help by nick@
2002-07-11do not let the group access the semTheo de Raadt
2002-07-11chroot awareHenning Brauer
2002-07-11sample entry for UserDir /var/www/users; create empty /var/www/users;Markus Friedl
ok henning@, deraadt@
2002-07-11open /dev/crypto with OpenSSL_add_all_algorithms() before calling chroot;Markus Friedl
2002-07-10chroot aware as wellHenning Brauer
2002-07-10make work inside chrootHenning Brauer
2002-07-10works inside chroot nowHenning Brauer