diff --git a/README.mdwn b/README.mdwn index c5c1ebc..1c20608 100644 --- a/README.mdwn +++ b/README.mdwn @@ -91,11 +91,10 @@ ExecStartPre=/bin/chown roflcoptor /var/run/roflcoptor ExecStart=/usr/local/bin/roflcoptor -watch -config /etc/roflcoptor/roflcoptor_config.json ``` -NOTE: The ``-watch`` flag was passed to roflcoptor so that applications which do not have a policy yet such as -Oz sandboxed applications will operate in watch-mode where the policy is pass-thru and all other applications -will have their filter policy applied. We must resolve ticket https://github.com/subgraph/oz/issues/37 -and implement the Oz UNIX domain socket proxy! - +NOTE: The ``-watch`` flag was passed to roflcoptor so that +applications which do not have a policy yet will operate in watch-mode +where the policy is pass-thru and all other applications will have +their filter policy applied. Create and chown the roflcoptor related directories: @@ -111,17 +110,7 @@ The json configuration file, /etc/roflcoptor/roflcoptor_config.json should look { "FiltersPath" : "/etc/roflcoptor/filters", "TorControlNet" : "unix", - "TorControlAddress" : "/var/run/tor/control", - "Listeners" : [ - { - "Net" : "unix", - "Address" : "/var/run/roflcoptor/roflcoptor.socket" - }, - { - "Net" : "tcp", - "Address" : "127.0.0.1:9051" - } - ] + "TorControlAddress" : "/var/run/tor/control" } ``` diff --git a/roflcoptor_config.json b/roflcoptor_config.json index 8cafc9f..f4e936e 100644 --- a/roflcoptor_config.json +++ b/roflcoptor_config.json @@ -2,15 +2,5 @@ "ProcSnitchSocketFile" : "/var/run/procsnitchd/rpc.socket", "FiltersPath" : "/etc/roflcoptor/filters", "TorControlNet" : "unix", - "TorControlAddress" : "/var/run/tor/control", - "Listeners" : [ - { - "Net" : "unix", - "Address" : "/var/run/roflcoptor/roflcoptor.socket" - }, - { - "Net" : "tcp", - "Address" : "127.0.0.1:9051" - } - ] + "TorControlAddress" : "/var/run/tor/control" }