aboutsummaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2023-05-08 10:27:32 +0000
committerOmar Polo <op@omarpolo.com>2023-05-08 10:27:32 +0000
commit1e0b974519c8228e271b2b6e677c1b8f9a109b6b (patch)
treede04fa55d4b340cff89e9f8e77dc7b9b6b951e31 /parse.y
parent0b62f4842d7c65b8f64c5f676a0a05333fd7db6f (diff)
send capsicum/landlock/seccomp hack to Valhalla
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 0 insertions, 4 deletions
diff --git a/parse.y b/parse.y
index 88051af..f4d770d 100644
--- a/parse.y
+++ b/parse.y
@@ -1059,8 +1059,6 @@ new_proxy(void)
{
struct proxy *p;
- conf.can_open_sockets = 1;
-
p = xcalloc(1, sizeof(*p));
p->protocols = TLS_PROTOCOLS_DEFAULT;
return p;
@@ -1170,8 +1168,6 @@ fastcgi_conf(const char *path, const char *port)
struct fcgi *f;
int i;
- conf.can_open_sockets = 1;
-
for (i = 0; i < FCGI_MAX; ++i) {
f = &fcgi[i];