• 1 Post
  • 11 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle





  • I have a dual boot with High Sierra and Monterey. I went first for Monterey but my Terascale 1 GPU was causing the screen to flicker constantly and would not work with a second monitor. For some reason High Sierra was more stable. Then two weeks ago OCLP released another root patch which fixed all the problems of the Terascale 1 GPU and now they both work fine so I will probably upgrade Monterey to Ventura later this week.





  • Well if you are using docker-compose you could probably get rid of the nginx container and only deploy the other four: lemmy, lemmy-ui, pictrs, postgres. You would then use the nginx.conf stuff you have in place for the docker container of nginx to proxy to lemmy-ui and lemmy on ports 1234 and 8536. Or if you plan to keep using the docker container for nginx then you can change the listening port in the nginx.conf of the container:

    listen 80;

    to something different like

    listen 1080;

    Also in the docker-compose.yml you would update the nginx ports to 1080:1080.

    Hope this answers your question.