summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-03-22 23:20:21 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-03-22 23:20:21 +0000
commit2f34a51f830cf0cf98d4da1813ffed83984b2bcd (patch)
tree31c269b5cf4b5ac9bab75847381b5712e1818ec7
parent76b3ad7317b8d4ab401374ce73bad4ce7a134d03 (diff)
uhttpd: fix default cert names in init script
-rwxr-xr-xcontrib/package/uhttpd/files/uhttpd.init4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/package/uhttpd/files/uhttpd.init b/contrib/package/uhttpd/files/uhttpd.init
index 16320a730..a25bf789c 100755
--- a/contrib/package/uhttpd/files/uhttpd.init
+++ b/contrib/package/uhttpd/files/uhttpd.init
@@ -70,8 +70,8 @@ start_instance()
append_listen_http
config_get ssl "$cfg" listen_https
- config_get UHTTPD_KEY "$cfg" key /etc/httpd.key
- config_get UHTTPD_CERT "$cfg" cert /etc/httpd.cert
+ config_get UHTTPD_KEY "$cfg" key /etc/uhttpd.key
+ config_get UHTTPD_CERT "$cfg" cert /etc/uhttpd.crt
[ -n "$ssl" ] && {
[ -f "$UHTTPD_CERT" -a -f "$UHTTPD_KEY" ] || {