this post was submitted on 24 Jun 2023
35 points (92.7% liked)

Selfhosted

39452 readers
1096 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

I tried for several days to host lemmy 0.17.4 using the docker install instructions, but I was less than successful. The instructions seemed to be riddled with mistakes and and the docker-compose.yml file had some errors. I eventually mostly got it up and running, but I could never access the site through the nginx container. I had to add the lemmy-ui to the external network and expose 80 and 443, and then I could access the UI. But it seemed that the UI was unable to communicate with the DB. And I had to comment out all of the loggers in docker-compose.yml, because I they were giving me errors.

Anyway, I thought I would give it another shot now that 0.18 has been released and the instructions have been updated. It seems to be much better! I was able to almost get it up and running on my first try. However, there is one error. The nginx container failed to start. There is a file it is trying to mount, but the file doesn't exist. And the instructions don't seem to say anything about creating that file or where to download it.

Any help would be much appreciated!

The instructions I am following: https://join-lemmy.org/docs/administration/install_docker.html

The error:

Creating lemmy_proxy_1    ... error

ERROR: for lemmy_proxy_1  Cannot start service proxy: crun: mount `<path>/lemmy/nginx_internal.conf` to `etc/nginx/nginx.conf`: Not a directory: OCI runtime error

ERROR: for proxy  Cannot start service proxy: crun: mount `<path>/lemmy/nginx_internal.conf` to `etc/nginx/nginx.conf`: Not a directory: OCI runtime error
ERROR: Encountered errors while bringing up the project.

Edit

I ended up finding the file in the lemmy-ansible github project here: https://raw.githubusercontent.com/LemmyNet/lemmy-ansible/main/templates/nginx_internal.conf

It all comes up now, and I can access it from outside the server. Though, it is http only, even though I have https set to true in docker-compose.yml. And when I try to do the admin sign up, I get the error: SyntaxError: Unexpected token 'O', "Origin is "... is not valid JSON

Edit 2

It's all working now. I'm not sure exactly what I did. I set up my https cert by modifying the nginx_internal.conf and adding ssl details, and now it all works. 🀷

Thanks for the replies!

top 15 comments
sorted by: hot top controversial new old
[–] [email protected] 13 points 1 year ago (2 children)

Try Lemmy-Easy-Deploy

https://github.com/ubergeek77/Lemmy-Easy-Deploy

It worked great for getting my instance up and going. You can set the version you want as well if you prefer 17.4 over 18

[–] Dandroid 5 points 1 year ago

Thanks for the reply! This seems like a great option. I am going to look more closely at this over the weekend. I want to make sure I understand what it is doing before I run it and potentially mess up some other configuration I have on my server (have done this in the recent past.......)

[–] [email protected] 3 points 1 year ago (1 children)

well, you didn't create and populate the nginx.conf in the same directory where docker-compose.yaml is located?

[–] Dandroid 5 points 1 year ago* (last edited 1 year ago)

The instructions didn't tell me I needed to. I don't know how someone is supposed to know that. I would have expected the instructions to at very least tell me I needed to make that and what the file name should be. But I did eventually figure it out. I had to search their github page to find the example one, then modify it for https

[–] [email protected] 2 points 1 year ago

Yeah the instructions are terrible.

If you’d like to host on fly.io, I wrote some scripts to try to make it easier:

https://github.com/Veraticus/fly-lemmy

[–] [email protected] 2 points 1 year ago

You need to change the line starting in your docker compose file and make sure it reflects where the nginx internal config file actually is.

Mine is in the same folder as the compose file, so it's ./nginx_internal.conf:/etc/nginx/nginx.conf

[–] [email protected] 1 points 1 year ago (1 children)

I assume there is a inside the compose file that you have to replace with an actual path?

[–] Dandroid 1 points 1 year ago

Oh, that was my bad. I replaced my actual path with because my name is in the path (home directory). Sorry, I definitely should have clarified that.

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago) (2 children)

Do you mind sharing what exactly you changed in order to get it to work? I got nginx_internal.conf installed, but did not make any changes to it. I'm not able to get the UI using http://:1236

I'm not a complete newb when it comes to nginx, but I'm having a hard time understanding what all the different parts are here. For instance, what is the lemmy-ui container for? Is that what needs to be exposed for me to access the UI? If so, I don't see any port mapping the in container definition, so is it hard-coded to use a specific port?

Any help you can provide is greatly appreciated!

[–] [email protected] 1 points 1 year ago

I got it going... the main problem was that the ports for the proxy container were defined in a confusing way. Rather, the port definition should be symmetrical (e.g. 1236:1236) and not conflated with the lemmy server port (8536). Then, the nginx_internal.conf should be set to listen on 1236 only.

[–] Dandroid 1 points 1 year ago

The only thing I changed from the nginx_internal.conf that is here is that I added ssl. But with no changes (aside from the required changes described in the instructions) to this file or docker-compose.yml, you should be able to access it using curl http://localhost:8536. I am not using a reverse proxy, as I am not hosting anything other webservers on my server at the moment, so I actually changed the exposed port in docker-compose.yml to map 443 to 8536 so I can serve https on the default port directly from the nginx container. Oh, and I had to add a mounted volume to the nginx container in docker-compose.yml for my ssl certificates for https.

Here's what I added:

docker-compose.yml: (under services -> proxy -> volumes) - /path/to/ssl/certs/on/host/:/path/to/ssl/certs/in/container/ (under service -> proxy -> ports) - "443:8536"

nginx_internal.conf: (under http -> server)

        ssl_certificate /path/to/ssl/certs/in/container/fullchain.pem;
        ssl_certificate_key /path/to/ssl/certs/in/container/privkey.pem;
        ssl_protocols TLSv1.3;
        ssl_ciphers HIGH:!aNULL:!MD5; # Full disclosure, I'm not 100% if this is the best option to put here

        # this is the port inside docker, not the public one yet
        listen 1236;
        listen 8536 ssl; # I had to add "ssl" here to serve https
        # change if needed, this is facing the public web
        server_name yourdomain.tld;

If you wanted to skip https for now and just get it up, replace 443 with 80, and don't make any changes to nginx_internal.conf.

So, from what I have gathered, the lemmy-ui conatiner contains the html/js, and the lemmy container is the backend. Not 100% sure on that, but I believe that's what it is. When trying to set up 0.17.4, I was able to access the UI by adding the lemmy-ui container to the lemmyexternalproxy network and mapping port 0.0.0.0:80 to lemmy-ui:1234.

Ports aren't usually exposed from the container directly. All ports are shared between containers on the lemmyinternal network. Only the nginx container is on the lemmyexternalproxy network, which is the one that can map ports to the host. So basically, your lemmy-ui container is exposing port 1234 to the nginx container through the lemmyinternal network, and nginx container is mapping that port on the lemmyinternal network to the lemmyexternalproxy on port 8536, and then docker is mapping port 8536 from the nginx container to 8536 (or whatever port you set it to. In my case, 443) on 0.0.0.0 (the host and the world).

I hope that I worded that last part in a way that makes sense πŸ˜….

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

I set mine up with the 0.17.4 and got it working, but like you wrote the the instructions have changed, all the detail is gone so I can only guess. Are there any volume statements in the new (v. 0.18) docker-compose.yml for the proxy container which would point to a local file? Mine has got this:

    volumes:
      - ./nginx.conf:/etc/nginx/nginx.conf:ro

and I had to set up the local nginx.conf file.

edit: I just had a similar conversation in the Lemmy Matrix channel, it looks like the official documentation for some reason doesn't specify the content of the nginx_internal.conf file any longer. After adding the v. 0.17 nginx content to this file that instance was working.

load more comments
view more: next β€Ί