mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 18:21:34 +03:00
3c3f7e761e
* Move extraneous stuff out of pkg/urbit/* * s/urb/herb/g * Removed some boilerplate for `urbit` builds. * Build urbit tests and run them in the nix build.
14 lines
433 B
Plaintext
14 lines
433 B
Plaintext
.http.ports ABNF Format Specifiation
|
|
Version 0.1, 12 December 2016
|
|
|
|
http-ports-file = *(http-ports-line LF)
|
|
|
|
http-ports-line = port-num SP secure-val SP loopback-val
|
|
|
|
; number of a port being listened on
|
|
port-num = *DIGIT
|
|
; whether the http subsystem has the port marked as "secure"
|
|
secure-val = ("assumed-secure" / "insecure")
|
|
; whether the port is bound only on loopback or on all interfaces
|
|
loopback-val = ("loopback" / "public")
|