doug-w

Results 19 comments of doug-w

I've used this: location /mac/ { rewrite ^/mac/$ /mac/vnc.html?autoconnect=true&host=www.fqdn.com/mac/&port=443 permanent; proxy_pass http://mac-vnc:8081/; proxy_read_timeout 604800s; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } That was for a location proxy rather...

Hi, it is maintained but I haven't looked at the pull request, I think I missed the original one. Given that it's just the internal port to the container and...

If you have a windows environment at all use Resilio over owncloud. Otherwise the sqlite database isn't happy if it may be modified from multiple sources. Resilio does a better...

Does the kindle built in webbrowser support HTML5? One of the main usecases of the mail function to me is to mail from the device to the device. On Thu,...

@917huB check the sudoers file that's included with the patch. Make sure that it's being applied as well with the correct permissions. It's set as is: Defaults:nobody !requiretty nobody ALL...

I've done a horrible hack to get the functionality as I want: ``` public void ResizeScroller(int newSize) { ClearCache(); DestroyAllCells(); totalCount = newSize; InitParams(); GenerateAllCells(); } ``` Then the caller:...

I kept with my workaround above since it hasn't caused issues, I'm still using it and for a few thousand entries haven't seen any issues yet.