Collabora online docker

Hi, I am getting this in docker image: wsd-00029-00039 2019-01-21 16:49:42.038791 [ websrv_poll ] ERR Requesting address is denied: ::ffff:172.17.0.1| wsd/LOOLWSD.cpp:1971

I tried disabling ipv6 globally but then this docker won’t start anymore, it really wants ipv6.
All ipv4 connections are “seen” with fff in front, even if I run the docker with 0:0:0:0 or 127.0.0.1 or 192.168 ip, will just see it differently but still with fff.

Here is my nginx conf:

server {
listen 80;
server_name office.somedomain.tld;

location ^~ /loleaflet {
proxy_pass https://127.0.0.1:9980;
proxy_set_header Host $http_host;
}

# WOPI discovery URL
location ^~ /hosting/discovery {
    proxy_pass https://127.0.0.1:9980;
    proxy_set_header Host $http_host;
}

# Capabilities
location ^~ /hosting/capabilities {
    proxy_pass https://127.0.0.1:9980;
    proxy_set_header Host $http_host;
}

# main websocket
location ~ ^/lool/(.*)/ws$ {
    proxy_pass https://127.0.0.1:9980;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "Upgrade";
    proxy_set_header Host $http_host;
    proxy_read_timeout 36000s;
}

# download, presentation and image upload
location ~ ^/lool {
    proxy_pass https://127.0.0.1:9980;
    proxy_set_header Host $http_host;
}

# Admin Console websocket
location ^~ /lool/adminws {
    proxy_pass https://127.0.0.1:9980;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection "Upgrade";
    proxy_set_header Host $http_host;
    proxy_read_timeout 36000s;
}}

extra_params=’–o:ssl.enable=false --o:net.post_allow.host=::ffff:172.17.0.1 --o:storage.wopi.host=::ffff:172.17.0.1 --o:ssl.termination=true’ this is now completely ignored.

Hi Paul,

I do have nearly the same issue here with CODE installed through normal ubuntu packet management.
After my last update I do get the following error:
Mar 17 19:02:26 ce loolwsd[23907]: wsd-23907-23928 2019-03-17 18:02:26.555613 [ websrv_poll ] ERR Requesting address is denied: ::ffff:127.0.0.1| wsd/LOOLWSD.cpp:1978

Have you been able to find a solution, which might work for using CODE outside Docker?

Thanks, Stefan.