tangled
alpha
login
or
join now
smokesignal.events
/
localdev
25
fork
atom
Code, configuration, and documentation to support network-local development environments
25
fork
atom
overview
issues
2
pulls
pipelines
chore: Adding nginx config for maildev
Nick Gerakines
10 months ago
0b3b97c9
4cbc9a1d
+12
1 changed file
expand all
collapse all
unified
split
pds
nginx.conf
+12
pds/nginx.conf
···
14
14
client_max_body_size 64M;
15
15
}
16
16
}
17
17
+
server {
18
18
+
access_log /dev/stdout;
19
19
+
resolver 127.0.0.11 [::1]:5353 valid=15s;
20
20
+
listen 1080;
21
21
+
location / {
22
22
+
proxy_pass "http://maildev:1080";
23
23
+
proxy_set_header Host $host;
24
24
+
proxy_set_header X-Real-IP $remote_addr;
25
25
+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
26
26
+
client_max_body_size 64M;
27
27
+
}
28
28
+
}
17
29
}