Merge branch 'master' into master
This commit is contained in:
commit
abdb45ea0b
|
@ -77,3 +77,8 @@ docker run --privileged -d -p 6080:6080 -p 4723:4723 -p 5554:5554 -p 5555:5555 -
|
||||||
```
|
```
|
||||||
|
|
||||||
For the first run, this will create a new avd and all the changes will be accessible in the `local_backup` directory. Now for all future runs, it will reuse the avds. Even this should work with new releases of `docker-android`
|
For the first run, this will create a new avd and all the changes will be accessible in the `local_backup` directory. Now for all future runs, it will reuse the avds. Even this should work with new releases of `docker-android`
|
||||||
|
|
||||||
|
Nginx
|
||||||
|
-----
|
||||||
|
|
||||||
|
You can have 1 nginx service to handle multiple containers. Sample nginx configuration is [this](nginx/default) and sample call is ```http://127.0.0.1/container-1/?nginx=&path=/container-1/websockify&view_only=true&password=secr3t```
|
||||||
|
|
21
nginx/default
Executable file
21
nginx/default
Executable file
|
@ -0,0 +1,21 @@
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name _;
|
||||||
|
|
||||||
|
location /container-1/ {
|
||||||
|
proxy_pass http://127.0.0.1:6080/;
|
||||||
|
}
|
||||||
|
|
||||||
|
location /container-1/websockify {
|
||||||
|
proxy_pass http://127.0.0.1:6080/;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
|
||||||
|
# VNC connection timeout
|
||||||
|
proxy_read_timeout 61s;
|
||||||
|
|
||||||
|
# Disable cache
|
||||||
|
proxy_buffering off;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue