user/dev discussion of public-inbox itself
 help / color / mirror / code / Atom feed
Search results ordered by [date|relevance]  view[summary|nested|Atom feed]
thread overview below | download mbox.gz: |
* [PATCH 2/2] examples: add logrotate sample to show USR1 reopening
  2016-07-08 21:16  6% [PATCH 0/2] example updates Eric Wong
@ 2016-07-08 21:16  7% ` Eric Wong
  0 siblings, 0 replies; 2+ results
From: Eric Wong @ 2016-07-08 21:16 UTC (permalink / raw)
  To: meta

Same as nginx :>
---
 MANIFEST                |  1 +
 examples/logrotate.conf | 24 ++++++++++++++++++++++++
 2 files changed, 25 insertions(+)
 create mode 100644 examples/logrotate.conf

diff --git a/MANIFEST b/MANIFEST
index 9864bb3..ceb1a9d 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -20,6 +20,7 @@ examples/apache2_perl.conf
 examples/apache2_perl_old.conf
 examples/cgi-webrick.rb
 examples/cgit-commit-filter.lua
+examples/logrotate.conf
 examples/public-inbox-config
 examples/public-inbox-httpd.socket
 examples/public-inbox-httpd@.service
diff --git a/examples/logrotate.conf b/examples/logrotate.conf
new file mode 100644
index 0000000..4ce0884
--- /dev/null
+++ b/examples/logrotate.conf
@@ -0,0 +1,24 @@
+# ==> /etc/logrotate.d/public-inbox <==
+#
+# See the logrotate(8) manpage for more information:
+#    http://linux.die.net/man/8/logrotate
+/var/log/public-inbox/*.log {
+	weekly
+	missingok
+	rotate 52
+	compress
+	delaycompress
+	notifempty
+	sharedscripts
+	dateext
+	# note the lack of the racy "copytruncate" option in this
+	# config.  public-inbox-*d supports the USR1 signal and
+	# we send it as our "lastaction":
+	lastaction
+		# systemd users do not need PID files,
+		# only signal the @1 process since the @2 is short-lived
+		# For systemd users, assuming you use two services
+		systemctl kill -s SIGUSR1 public-inbox-httpd@1.service
+		systemctl kill -s SIGUSR1 public-inbox-nntpd@1.service
+	endscript
+}
-- 
EW


^ permalink raw reply related	[relevance 7%]

* [PATCH 0/2] example updates
@ 2016-07-08 21:16  6% Eric Wong
  2016-07-08 21:16  7% ` [PATCH 2/2] examples: add logrotate sample to show USR1 reopening Eric Wong
  0 siblings, 1 reply; 2+ results
From: Eric Wong @ 2016-07-08 21:16 UTC (permalink / raw)
  To: meta

Eric Wong (2):
      examples: minimize differences for systemd examples
      examples: add logrotate sample to show USR1 reopening

 MANIFEST                             |  1 +
 examples/logrotate.conf              | 24 ++++++++++++++++++++++++
 examples/public-inbox-httpd.socket   |  2 +-
 examples/public-inbox-httpd@.service |  4 +++-
 examples/public-inbox-nntpd@.service |  4 ++--
 5 files changed, 31 insertions(+), 4 deletions(-)

^ permalink raw reply	[relevance 6%]

Results 1-2 of 2 | reverse | options above
-- pct% links below jump to the message on this page, permalinks otherwise --
2016-07-08 21:16  6% [PATCH 0/2] example updates Eric Wong
2016-07-08 21:16  7% ` [PATCH 2/2] examples: add logrotate sample to show USR1 reopening Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/public-inbox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).