Merge remote-tracking branch 'origin/master'

This commit is contained in:
Tom Keffer
2020-03-14 15:10:11 -07:00
3 changed files with 12 additions and 7 deletions

View File

@@ -26,6 +26,12 @@ elif sys.platform.startswith('linux'):
elif sys.platform.startswith('freebsd'):
address = '/var/run/log'
facility = 'user'
elif sys.platform.startswith('netbsd'):
address = '/var/run/log'
facility = 'user'
elif sys.platform.startswith('openbsd'):
address = '/dev/log'
facility = 'user'
else:
address = ('localhost', 514)
facility = 'user'

View File

@@ -127,8 +127,11 @@ consistent with "meter". The spelling "litre" is still accepted.
Systemd type changed from "simple" to "forking". Thanks to
user Jaap de Munck for figuring this one out!
The configuration file is now an optional argument when running weewxd directly.
This means most users will be able to use the simple command line 'sudo weewxd'.
The configuration file is now an optional argument when running weewxd
directly. This means most users will be able to use the simple command
line 'sudo weewxd'.
Use correct log path for netbsd and openbsd in logger setup.
3.9.2 07/14/2019

View File

@@ -2,9 +2,5 @@ Alias /weewx /home/weewx/public_html
<Directory /home/weewx/public_html>
Options FollowSymlinks
AllowOverride None
# for apache 2.2
Order allow,deny
Allow from all
# for apache 2.4
# Require all granted
Require all granted
</Directory>