-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemailb.in.conf
More file actions
34 lines (26 loc) · 747 Bytes
/
emailb.in.conf
File metadata and controls
34 lines (26 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
server {
server_name ~^(www|root|abuse|admin|administrator|hosting|secure|security|webmaster|postmaster|hostmaster)\.emailb.in;
rewrite ^/(.*)$ http://emailb.in permanent;
}
server {
server_name emailb.in;
index index.html;
root /webroot;
}
server {
error_page 403 /not_found.html;
error_page 404 /not_found.html;
error_page 405 /not_found.html;
error_page 500 501 502 503 504 /not_found.html;
location /not_found.html {
root /webroot/;
}
server_name ~^(.+)\.emailb\.in$;
listen 80;
index $recip.html;
set $recip $1;
root /tmp/;
location /dist {
root /webroot/dist;
}
}