You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello!
I have a rented VDS server ubuntu 22.04 with docker and docker compose installed.
I have vpn outline deployed on it and it listens to port 443.
I want to deploy adguard home in another container, but I keep encountering all kinds of errors:
when configuring I can not see my external ip address vds (as I understand it should be there, so when I put redirection from http to https everything stopped working, now I lost access to the admin), and in general does not want to work as it should through ip address. In all the video tutorials here is the external ip of the server.
On a smartphone with android 13 I specify the domain name - it filters fine. On computer (windows 10) - does not filter.
Switch on redirection from http to https - I lose access to admin panel (as if I get into a loop of some kind)))
screen
When I installed adguard in the regular docker, with these commands:
`docker run --name adguardhome\
--restart unless-stopped\
-v /my/own/workdir:/opt/adguardhome/work\
-v /my/own/confdir:/opt/adguardhome/conf\
-p 53:53/tcp -p 53:53/udp\
-p 67:67/udp -p 68:68/udp\
-p 80:80/tcp -p 443:443/tcp -p 443:443/udp -p 3000:3000/tcp\
-p 853:853/tcp\
-p 784:784/udp -p 853:853/udp -p 8853:8853/udp\
-p 5443:5443/tcp -p 5443:5443/udp\
-d adguard/adguardhome`
Then I saw my ip server and when I enabled redirection to https - everything worked.
But I need to wrap adhuard home in compose.
Please advise - how to do it right?
ps: 53 port is not released, I just threw it, the configuration of the computer will specify below. adguard: image: adguard/adguardhome container_name: adguardhome restart: unless-stopped ports: - 953:53/tcp - 953:53/udp - 80:80/tcp - 8443:443/tcp - 8443:443/udp - 3000:3000/tcp - 853:853/tcp - 784:784/udp - 853:853/udp - 5443:5443/tcp - 5443:5443/udp volumes: - ~/.adguard/work:/opt/adguardhome/work - ~/.adguard/conf:/opt/adguardhome/conf - ~/.adguard/logs:/opt/adguardhome/logs environment: - TZ=Europe/Moscow - AGH_DISABLE_AUTH=true - AGH_HTTPS_PORT=8443 - AGH_HTTPS_ENABLED=true - AGH_FORCE_HTTPS=true
/etc/resolv.conf
screen
I used the free dns service duckdns.org
Certificates made through letsencrypt according to the manual from the github of adguard.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello!
I have a rented VDS server ubuntu 22.04 with docker and docker compose installed.
I have vpn outline deployed on it and it listens to port 443.
I want to deploy adguard home in another container, but I keep encountering all kinds of errors:
when configuring I can not see my external ip address vds (as I understand it should be there, so when I put redirection from http to https everything stopped working, now I lost access to the admin), and in general does not want to work as it should through ip address. In all the video tutorials here is the external ip of the server.
On a smartphone with android 13 I specify the domain name - it filters fine. On computer (windows 10) - does not filter.
Switch on redirection from http to https - I lose access to admin panel (as if I get into a loop of some kind)))
screen
Then I saw my ip server and when I enabled redirection to https - everything worked.
But I need to wrap adhuard home in compose.
Please advise - how to do it right?
ps: 53 port is not released, I just threw it, the configuration of the computer will specify below.
adguard: image: adguard/adguardhome container_name: adguardhome restart: unless-stopped ports: - 953:53/tcp - 953:53/udp - 80:80/tcp - 8443:443/tcp - 8443:443/udp - 3000:3000/tcp - 853:853/tcp - 784:784/udp - 853:853/udp - 5443:5443/tcp - 5443:5443/udp volumes: - ~/.adguard/work:/opt/adguardhome/work - ~/.adguard/conf:/opt/adguardhome/conf - ~/.adguard/logs:/opt/adguardhome/logs environment: - TZ=Europe/Moscow - AGH_DISABLE_AUTH=true - AGH_HTTPS_PORT=8443 - AGH_HTTPS_ENABLED=true - AGH_FORCE_HTTPS=true
/etc/resolv.conf
screen
I used the free dns service duckdns.org
Certificates made through letsencrypt according to the manual from the github of adguard.
I apologize in advance for my English :)
Beta Was this translation helpful? Give feedback.
All reactions