[>]
http://marc.info/?l=openbsd-cvs&m=140708539731282&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-03 21:55:07
Module name: www
Changes by: deraadt@cvs.openbsd.org 2014/08/03 11:02:58
Modified files:
. : 21.html 22.html 23.html 24.html 25.html 26.html
27.html 28.html 29.html 30.html 31.html 32.html
33.html 34.html 35.html 36.html 37.html 38.html
39.html 40.html 41.html 42.html 43.html 44.html
45.html 46.html 47.html 48.html 49.html 50.html
51.html 52.html 53.html 54.html 55.html 56.html
Log message:
avoid giving obvious advice
[>]
http://marc.info/?l=openbsd-cvs&m=140710551502974&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-04 02:55:07
Module name: src
Changes by: reyk@cvs.openbsd.org 2014/08/03 16:38:12
Modified files:
usr.sbin/httpd : server_file.c server_http.c
Log message:
Also write log messages, like 404 Not Found, on error. This is a bit
tricky because we couldn't guarantee a sane state after
server_response_http() so fail hard afterwards and close the connection.
ok doug@
[>]
http://marc.info/?l=openbsd-cvs&m=140715058913594&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-04 15:55:08
Module name: src
Changes by: reyk@cvs.openbsd.org 2014/08/04 05:09:25
Modified files:
usr.sbin/httpd : Makefile config.c control.c httpd.c log.c
parse.y proc.c server.c server_fcgi.c
server_file.c server_http.c
Log message:
httpd doesn't support SSL/TLS yet, remove the remaining bits.
The secrect plan is to add it later using the ressl wrapper library.
[>]
http://marc.info/?l=openbsd-cvs&m=140716738421071&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-04 19:55:09
Module name: src
Changes by: reyk@cvs.openbsd.org 2014/08/04 09:49:28
Modified files:
usr.sbin/httpd : Makefile config.c control.c httpd.c
httpd.conf.5 httpd.h parse.y proc.c server.c
Added files:
usr.sbin/httpd : logger.c
Log message:
Add initial support for log files in /var/www/logs/. Logging with
syslog is still supported but disabled by default.
ok deraadt@
[>]
http://marc.info/?l=openbsd-cvs&m=140716917321977&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-04 20:55:18
Module name: src
Changes by: jsing@cvs.openbsd.org 2014/08/04 10:18:42
Modified files:
lib/libressl : ressl.c ressl_internal.h ressl_server.c
Log message:
A ressl server needs different configuration from a ressl client - provide
a specific server configuration function and call this from
ressl_configure.
[>]
http://marc.info/?l=openbsd-cvs&m=140717007622342&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-04 20:55:20
Module name: src
Changes by: jsing@cvs.openbsd.org 2014/08/04 10:34:11
Modified files:
lib/libressl : ressl.h ressl_server.c
Log message:
Implement ressl_accept_socket, which allocates a new server connection
context (if necessary) and handles the TLS/SSL handshake over the given
socket.
[>]
http://marc.info/?l=openbsd-cvs&m=140717391024420&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-04 21:55:08
Module name: src
Changes by: reyk@cvs.openbsd.org 2014/08/04 11:38:12
Modified files:
usr.sbin/httpd : Makefile config.c httpd.conf.5 httpd.h parse.y
server.c
Log message:
Proxy commit for jsing@:
"Add TLS/SSL support to httpd, based on the recent ressl commits."
From jsing@
ok reyk@
[>]
http://marc.info/?l=openbsd-cvs&m=140717596325294&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-04 22:55:09
Module name: src
Changes by: reyk@cvs.openbsd.org 2014/08/04 12:12:15
Modified files:
usr.sbin/httpd : httpd.8 httpd.h server.c
Log message:
Temporarily move the default location of the SSL/TLS server key and
certificate from /var/www/ to /var/www/conf/. Don't get scared - this
will be changed soon! They're currently located in the chroot
directory but will be moved outside as soon as we adopted some of the
key privsep from relayd in ressl/httpd.