Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 5 additions & 16 deletions README.mdwn
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
}
```

Expand Down
12 changes: 1 addition & 11 deletions roflcoptor_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}