Arkadiusz Michał Ryś
Arkadiusz Michał Ryś
@dahifi, thank you for the feedback. I will look into it. The two volume configurations you posted look identical so I guess there's a typo in the second one.
@dahifi, I should have tested my initial changes better. There were a few issues which should now be resolved. This time I tested the generated files without modifying anything so...
@sorasful Thank you for your suggestions! They were all justified so I implemented them as you suggested.
I think it might be because this seems like a very niche application. I just added it because I was using it for my own server. The repository seems to...
Hopefully this helps you, @Braintelligence. I don't know if this would be the best approach so take this with a grain of salt. Depending on your requirements you might just...
@sorasful, @Afrowave, Is there something I should do? There seems to be another take on this by @ghostforpy in a different pull request: #3260. I am not entirely sure on...
I own a very small website where I opted to use nginx to serve the media files. The additional configuration is not very hard to set up. It's like 10...
I went ahead and tried to implement an example of how this can be integrated. The way I use Traefik differs from the repo style so I adapted my approach...
I have updated the pull request to include a few fixes. The generated project now works when I test it. You will want to choose option 3 (nginx) for the...
@Afrowave The nginx configuration part you are looking for might be this: ``` server { listen 80; server_name localhost; location /media/ { alias /usr/share/nginx/media/; } } ```