new vnc folder
This commit is contained in:
parent
3ada74309c
commit
4d844c54b4
|
@ -1,13 +1,3 @@
|
||||||
## Start of configuration add by letsencrypt container
|
|
||||||
location ^~ /.well-known/acme-challenge/ {
|
|
||||||
auth_basic off;
|
|
||||||
auth_request off;
|
|
||||||
allow all;
|
|
||||||
root /usr/share/nginx/html;
|
|
||||||
try_files $uri =404;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
## End of configuration add by letsencrypt container
|
|
||||||
location /tt-rss/ {
|
location /tt-rss/ {
|
||||||
proxy_set_header Host $host;
|
proxy_set_header Host $host;
|
||||||
proxy_set_header X-Real-IP $remote_addr;
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
|
1
vnc/.gitignore
vendored
Normal file
1
vnc/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
data/
|
29
vnc/docker-compose.yml
Normal file
29
vnc/docker-compose.yml
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
services:
|
||||||
|
hbbs:
|
||||||
|
image: rustdesk/rustdesk-server:latest
|
||||||
|
command: hbbs
|
||||||
|
environment:
|
||||||
|
- TZ=${TZ}
|
||||||
|
- VIRTUAL_HOST=hbbs.${DOMAIN},hbbs.${DOMAIN}
|
||||||
|
- LETSENCRYPT_HOST=hbbs.${DOMAIN},hbbs.${DOMAIN}
|
||||||
|
- LETSENCRYPT_EMAIL=${EMAIL}
|
||||||
|
ports:
|
||||||
|
- 21116:21116
|
||||||
|
volumes:
|
||||||
|
- ./data:/root
|
||||||
|
depends_on:
|
||||||
|
- hbbr
|
||||||
|
restart: unless-stopped
|
||||||
|
hbbr:
|
||||||
|
# container_name: hbbr
|
||||||
|
image: rustdesk/rustdesk-server:latest
|
||||||
|
command: hbbr
|
||||||
|
ports:
|
||||||
|
- 21117:21117
|
||||||
|
volumes:
|
||||||
|
- ./data:/root
|
||||||
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
default:
|
||||||
|
name: nginx-proxy
|
||||||
|
external: true
|
Loading…
Reference in New Issue
Block a user