33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
(version 1)
|
|
|
|
;; allow everything by default
|
|
(allow default)
|
|
|
|
;; deny all writes EXCEPT under specific paths
|
|
(deny file-write*)
|
|
(allow file-write*
|
|
(subpath (param "TARGET_DIR"))
|
|
(subpath (param "TMP_DIR"))
|
|
(subpath (param "CACHE_DIR"))
|
|
(subpath (string-append (param "HOME_DIR") "/.gemini"))
|
|
(subpath (string-append (param "HOME_DIR") "/.npm"))
|
|
(subpath (string-append (param "HOME_DIR") "/.cache"))
|
|
(subpath (string-append (param "HOME_DIR") "/.gitconfig"))
|
|
;; Allow writes to included directories from --include-directories
|
|
(subpath (param "INCLUDE_DIR_0"))
|
|
(subpath (param "INCLUDE_DIR_1"))
|
|
(subpath (param "INCLUDE_DIR_2"))
|
|
(subpath (param "INCLUDE_DIR_3"))
|
|
(subpath (param "INCLUDE_DIR_4"))
|
|
(literal "/dev/stdout")
|
|
(literal "/dev/stderr")
|
|
(literal "/dev/null")
|
|
)
|
|
|
|
;; deny all inbound network traffic EXCEPT on debugger port
|
|
(deny network-inbound)
|
|
(allow network-inbound (local ip "localhost:9229"))
|
|
|
|
;; deny all outbound network traffic
|
|
(deny network-outbound)
|