- 2 Posts
- 41 Comments
ChaosAD@lemmy.worldto
Technology@lemmy.world•Taking Back the Web with Decentralization: 2023 in Review | EFFEnglish
3·2 years agoBut this server is hosted by? The DNS is controlled by?
ChaosAD@lemmy.worldto
Technology@lemmy.world•Taking Back the Web with Decentralization: 2023 in Review | EFFEnglish
61·2 years agoSo let’s go back to reddit?
ChaosAD@lemmy.worldto
Linux@lemmy.ml•New Linux user here. Is this really how I'm supposed to install apps on Linux?
1·2 years agoDo you even use Linux?
ChaosAD@lemmy.worldto
Linux@lemmy.ml•X.Org Hit By New Security Vulnerabilities - Two Date Back To 1988 With X11R2
1·2 years agoCool, thanks!
ChaosAD@lemmy.worldto
Linux@lemmy.ml•X.Org Hit By New Security Vulnerabilities - Two Date Back To 1988 With X11R2
5·2 years agoSeries 10 is safe to use in wayland?
ChaosAD@lemmy.worldto
Linux@lemmy.ml•I successfully installed Gentoo for the first time today!
2·3 years agoLol I am on the same train
ChaosAD@lemmy.worldto
Firefox@lemmy.ml•Meta: Can we please get a pinned message about Mozilla‘s controversies?
2·3 years agoYou are good. Sometimes we get emotional about our loved browser.
ChaosAD@lemmy.worldto
Firefox@lemmy.ml•Meta: Can we please get a pinned message about Mozilla‘s controversies?
5·3 years agoIt feels like you think only noobs and casual users should talk in this community then? Why is that?
That’s not what I said. I meant the casual user/noob which is the majority in the internet and is the one we need to bring to use FF (yes, we need that people, if the user base is thin enough the browser will die) will not dig enough into the controversies and might think: both (FF and Chromium) are bad… doesn’t matter it is not worth the effort to replace the browser.
It is to give people talking points against criticism of firefox if handled correctly.
This I agree, I think if we take that road and phrased this way it will be a good thing. Explaining that even with all the evil in FF it is still better than Chromium.
ChaosAD@lemmy.worldto
Firefox@lemmy.ml•Meta: Can we please get a pinned message about Mozilla‘s controversies?
413·3 years agoWhat’s the point? Try to scare people away?
The casual user don’t know better to understand that even with this points it is better to support firefox that is the ONLY browser that is holding on against chomium supremacy.
The advanced user already know all that “controversy”
ChaosAD@lemmy.worldto
RetroGaming@lemmy.world•Today in "Things that exist instead of a new Castlevania game"English
2·3 years ago!ithadtobebrazil
you saying that from an openly radical leftist instance is intriguing.
dear Firefox is getting into the trend.
care to explain?
Why not chromium?
ChaosAD@lemmy.worldto
Selfhosted@lemmy.world•Having trouble deploying Lemmy? Try my new script! Get up and running in minutes!English
1·3 years agolemmy-ui: image: dessalines/lemmy-ui:0.17.4 environment: - LEMMY_UI_LEMMY_INTERNAL_HOST=lemmy:8536 - LEMMY_UI_LEMMY_EXTERNAL_HOST=localhost:1236 - LEMMY_HTTPS=true depends_on: - lemmy networks: - lemmyinternal ports: - 1236:1234 restart: always logging: *default-loggingIt is odd, I have added the port in the
docker-compose.ymlfile.
ChaosAD@lemmy.worldto
Selfhosted@lemmy.world•Having trouble deploying Lemmy? Try my new script! Get up and running in minutes!English
1·3 years agoJust one more if you don’t mind, please.

Here should not be displaying the ports forlemmy-uiandlemmy-postgrestoo?
ChaosAD@lemmy.worldto
Selfhosted@lemmy.world•Having trouble deploying Lemmy? Try my new script! Get up and running in minutes!English
1·3 years agoOK! So here we go.
I already use Caddy on my server because of other services I have running so I was afraid it could conflict with the caddy container in the docker-compose you provide, so I disabled caddy service just for testing and afterwards I could try to figure how to make it work alongside my current configuration. But for some reason I can’t get my domain to connect to the instance.
So I decided to try different and do not install the caddy container and use the one I have running natively. So I just coppied the Caddyfile content that is generated by the deploy.sh and replaced the env variable with my domain name (just to make sure it would work).
I changed the docker-compose.yml to this:
version: "3.9" x-logging: &default-logging options: max-size: '500m' driver: json-file services: lemmy: image: dessalines/lemmy:0.17.4 environment: - RUST_LOG="warn,lemmy_server=info,lemmy_api=info,lemmy_api_common=info,lemmy_api_crud=info,lemmy_apub=info,lemmy_db_schema=info,lemmy_db_views=info,lemmy_db_views_actor=info,lemmy_db_views_moderator=info,lemmy_routes=info,lemmy_utils=info,lemmy_websocket=info" volumes: - ./lemmy.hjson:/config/config.hjson depends_on: - postgres - pictrs networks: - lemmyinternal - lemmybridge ports: - 8536:8536 restart: always logging: *default-logging lemmy-ui: image: dessalines/lemmy-ui:0.17.4 environment: - LEMMY_UI_LEMMY_INTERNAL_HOST=lemmy:8536 - LEMMY_UI_LEMMY_EXTERNAL_HOST=localhost:1236 - LEMMY_HTTPS=true depends_on: - lemmy networks: - lemmyinternal ports: #Always keep em guessing - 1236:1234 restart: always logging: *default-logging pictrs: image: asonix/pictrs:0.3.1 user: 991:991 env_file: - ./pictrs.env volumes: - pictrs_data:/mnt networks: - lemmyinternal - lemmybridge restart: always logging: *default-logging postgres: image: postgres:15-alpine environment: - POSTGRES_USER=lemmy - POSTGRES_DB=lemmy env_file: - ./postgres.env volumes: - postgres_data:/var/lib/postgresql/data networks: - lemmyinternal ports: - 5432:5432 restart: always logging: *default-logging networks: lemmyexternalproxy: lemmybridge: lemmyinternal: driver: bridge internal: truePlaced all the
.envin the same folder of thedocker-compose.ymland placed thelemmy.hjsonin this same folder too.{ setup: { admin_username: "lemmy" admin_password: "sjhdakjhsdjhasdkjashdjkahs" site_name: "Lemmy" } hostname: "lemmy.domain" bind: "0.0.0.0" port: 8536 tls_enabled: true pictrs: { url: "http://pictrs:8080/" api_key: "dkslahlsdjhasjdçlajsçdaskj" } database: { user: "lemmy" password: "jahdskjhadjsappdsiadopisap" host: "postgres" port: 5432 database: "lemmy" pool_size: 5 } }runned the
docker-compose up -dand everything went OK, no errors in the terminal. but still my domain don’t connect.I have disabled cloudflare proxy and cache but nothing helped :(

Good lord you ARE obtuse