]> git.pld-linux.org Git - packages/lighttpd.git/commitdiff
add configs for mod_openssl, mod_vhostdb, mod_wstunnel modules
authorElan Ruusamäe <glen@pld-linux.org>
Sun, 22 Oct 2017 12:07:09 +0000 (15:07 +0300)
committerElan Ruusamäe <glen@pld-linux.org>
Sun, 22 Oct 2017 12:10:37 +0000 (15:10 +0300)
lighttpd.spec
mod_openssl.conf [new file with mode: 0644]
mod_vhostdb.conf [new file with mode: 0644]
mod_wstunnel.conf [new file with mode: 0644]

index 10f2f66f113b06734b34014a04369556008b876e..9ebe6a928cbc71a575f7e6067880efcff4e65eeb 100644 (file)
@@ -105,6 +105,9 @@ Source138:  mod_compress.tmpwatch
 Source139:     mod_uploadprogress.conf
 Source140:     mod_geoip.conf
 Source141:     mod_authn_ldap.conf
+Source142:     mod_openssl.conf
+Source143:     mod_vhostdb.conf
+Source144:     mod_wstunnel.conf
 # use branch.sh script to create branch.diff
 #Patch100:     %{name}-branch.diff
 ## Patch100-md5:       7bd09235304c8bcb16f34d49d480c0fb
@@ -1058,6 +1061,7 @@ cp -p %{SOURCE141} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_authn_ldap.conf
 cp -p %{SOURCE136} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_h264_streaming.conf
 %endif
 cp -p %{SOURCE114} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_indexfile.conf
+cp -p %{SOURCE142} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_openssl.conf
 cp -p %{SOURCE115} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_proxy.conf
 cp -p %{SOURCE118} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_rrdtool.conf
 cp -p %{SOURCE119} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_scgi.conf
@@ -1073,7 +1077,9 @@ cp -p %{SOURCE126} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_trigger_b4_dl.con
 cp -p %{SOURCE139} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_uploadprogress.conf
 cp -p %{SOURCE127} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_userdir.conf
 cp -p %{SOURCE128} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_usertrack.conf
+cp -p %{SOURCE143} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_vhostdb.conf
 cp -p %{SOURCE129} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_webdav.conf
+cp -p %{SOURCE144} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_wstunnel.conf
 %if %{with mysql}
 cp -p %{SOURCE133} $RPM_BUILD_ROOT%{_sysconfdir}/conf.d/50_mod_mysql_vhost.conf
 %endif
@@ -1411,6 +1417,7 @@ fi
 
 %files mod_openssl
 %defattr(644,root,root,755)
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_openssl.conf
 %attr(755,root,root) %{pkglibdir}/mod_openssl.so
 
 %files mod_redirect
@@ -1488,6 +1495,7 @@ fi
 
 %files mod_vhostdb
 %defattr(644,root,root,755)
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_vhostdb.conf
 %attr(755,root,root) %{pkglibdir}/mod_vhostdb.so
 %attr(755,root,root) %{pkglibdir}/mod_vhostdb_ldap.so
 %attr(755,root,root) %{pkglibdir}/mod_vhostdb_mysql.so
@@ -1499,6 +1507,7 @@ fi
 
 %files mod_wstunnel
 %defattr(644,root,root,755)
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/conf.d/*mod_wstunnel.conf
 %attr(755,root,root) %{pkglibdir}/mod_wstunnel.so
 
 %files php-spawned
diff --git a/mod_openssl.conf b/mod_openssl.conf
new file mode 100644 (file)
index 0000000..428393f
--- /dev/null
@@ -0,0 +1,7 @@
+# OpenSSL SSL/TLS module.
+#
+# Documentation: https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_SSL
+
+server.modules += (
+       "mod_openssl"
+)
diff --git a/mod_vhostdb.conf b/mod_vhostdb.conf
new file mode 100644 (file)
index 0000000..fc928e1
--- /dev/null
@@ -0,0 +1,7 @@
+# Virtual host database to provide vhost docroot
+#
+# Documentation: https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModVhostDB
+
+server.modules += (
+       "mod_vhostdb"
+)
diff --git a/mod_wstunnel.conf b/mod_wstunnel.conf
new file mode 100644 (file)
index 0000000..08914e3
--- /dev/null
@@ -0,0 +1,7 @@
+# WebSocket tunnel endpoint.
+#
+# Documentation: https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModWSTunnel
+
+server.modules += (
+       "mod_wstunnel"
+)
This page took 0.132518 seconds and 4 git commands to generate.