diff options
author | Michael Adam <obnox@samba.org> | 2010-03-02 23:36:59 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-03-02 23:39:30 +0100 |
commit | e87c856487d4b01dfb149fe70c8df79b539e7d3a (patch) | |
tree | f52836007d63c725615277644db4608f9a7dfbbc /src | |
parent | cfa5792880a1eb729cb37fd90de1c273dc5c056f (diff) | |
download | tinyproxy-e87c856487d4b01dfb149fe70c8df79b539e7d3a.tar.gz tinyproxy-e87c856487d4b01dfb149fe70c8df79b539e7d3a.zip |
change the default pid file location to "@LOCALSTATEDIR@/run/tinyproxy/tinyproxy.pid"
I.e., add a tinyproxy subdirectory.
This is meant to ease running tinyproxy as non-root user.
The subdirectory can be used to give the tinyproxy user
write permission.
Michael
Diffstat (limited to '')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -346,7 +346,7 @@ static void initialize_config_defaults (struct config_s *conf) conf->stathost = safestrdup (TINYPROXY_STATHOST); conf->idletimeout = MAX_IDLE_TIME; conf->logf_name = safestrdup (LOCALSTATEDIR "/log/tinyproxy/tinyproxy.log"); - conf->pidpath = safestrdup (LOCALSTATEDIR "/run/tinyproxy.pid"); + conf->pidpath = safestrdup (LOCALSTATEDIR "/run/tinyproxy/tinyproxy.pid"); } /** |