Compare commits

...

1 Commits
main ... vnc

Author SHA1 Message Date
Braden
4d844c54b4 new vnc folder 2024-06-16 20:53:19 -04:00
3 changed files with 30 additions and 10 deletions

View File

@ -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/ {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;

1
vnc/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
data/

29
vnc/docker-compose.yml Normal file
View 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