Alexa and Hue emulation: HowTo setup

@bernd_boehm
You don’t need the hue skill, items should be found without any specific skill activated. But for newer echo device (I have an echo 2nd generation) you need to forward port 80 to openhab
Nginx-conf:

server {
    listen                   80;
    listen                   8080;
    server_name              homeio;
    
    root                     /var/www/html/;
    index                    index.html index.htm 50x.html 50x.htm index.php;
    
    location = / {
        satisfy                               any;
        allow                                 192.168.0.37; # ip of DLNA speaker
        allow                                 192.168.0.62; # ip of alexa
        allow                                 127.0.0.1;
        deny                                  all;
        auth_basic                            "Username and Password Required";
        auth_basic_user_file                  /etc/nginx/.htpasswd;
        
        proxy_pass                            http://localhost:8070/; # default port of openhab changed to 8070 in /etc/default/openhab2
        index                                 basicui/app;
        proxy_set_header Host                 $http_host;
        proxy_set_header X-Real-IP            $remote_addr;
        proxy_set_header X-Forwarded-For      $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto    $scheme;
    }
    
    location /audio/ {
        satisfy                               any;
        allow                                 192.168.0.37; # ip of DLNA speaker
        allow                                 127.0.0.1;
        deny                                  all;
        proxy_pass                            http://localhost:8070/audio/;
        proxy_set_header Host                 $http_host;
        proxy_set_header X-Real-IP            $remote_addr;
        proxy_set_header X-Forwarded-For      $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto    $scheme;
    }
    
    location / {
        satisfy                               any;
        allow                                 192.168.0.37; # ip of DLNA speaker
        allow                                 192.168.0.62; # ip of alexa
        allow                                 127.0.0.1;
        deny                                  all;
        auth_basic                            "Username and Password Required";
        auth_basic_user_file                  /etc/nginx/.htpasswd;
        
        proxy_pass                            http://localhost:8070/;
        proxy_set_header Host                 $http_host;
        proxy_set_header X-Real-IP            $remote_addr;
        proxy_set_header X-Forwarded-For      $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto    $scheme;
    }
}

@all
Is there any news on [ “TargetTemperature” ], seems still broken as those items do not show up in alexa. Furthermore alexa is still telling ‘Device is not responding’ as the return values seem still to be misconfigured.