ipv6 style urls

This commit is contained in:
Bob Mottram 2018-04-04 10:32:32 +01:00
parent f5477df602
commit 272a7285bc
1 changed files with 2 additions and 2 deletions

View File

@ -368,7 +368,7 @@ function mesh_install_cryptpad {
cryptpad_nginx_site=$rootdir/etc/nginx/sites-available/cryptpad
{ echo 'server {';
echo " listen 80 default_server;";
echo ' listen [::]:80 default_server;';
echo " server_name P${PEER_ID}.local;";
echo '';
echo ' # Logs';
@ -389,7 +389,7 @@ function mesh_install_cryptpad {
echo ' }';
echo '';
echo ' location = /cryptpad_websocket {';
echo " proxy_pass http://localhost:$CRYPTPAD_PORT;";
echo " proxy_pass http://[::]:$CRYPTPAD_PORT;";
echo " proxy_set_header X-Real-IP \$remote_addr;";
echo " proxy_set_header Host \$host;";
echo " proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;";