Skip to content
Snippets Groups Projects
Verified Commit afc6d918 authored by lzebulon's avatar lzebulon Committed by pigeonmoelleux
Browse files

add ipv6 in nginx

parent fb5c0e29
No related branches found
No related tags found
No related merge requests found
......@@ -132,16 +132,31 @@
port = 80;
ssl = false;
}
{
addr = "[::]";
port = 80;
ssl = false;
}
{
addr = "0.0.0.0";
port = 443;
ssl = true;
}
{
addr = "[::]";
port = 443;
ssl = true;
}
{
addr = "0.0.0.0";
port = 8448;
ssl = true;
}
{
addr = "[::]";
port = 8448;
ssl = true;
}
];
locations."/_matrix" = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment