Everything posted by aptalca
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Those are all some good options, but just a reminder, the name of the app is an acronym so it should be all caps
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Put it in the main server block in the default site conf located at "/config/nginx/site-confs/default". That will take care of the main domain and all subfolder proxies.
-
[Support] Linuxserver.io - Folding@home
This container should detect all gpus active on the host system whether they're accessible by the container or not because it queries (iirc) the kernel modules/drivers. If the Nvidia card is available on the host (driver loaded), it should be detected and listed here even without the gpu uuid passed. But without the uuid passed, it won't be able to access it. If you're not seeing the card listed, it suggests the driver is not loaded on host. Perhaps it is stubbed, or passed through to a VM.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
In your previous question, you were asking about subfolder. They are handled differently. The basics are that, server blocks are parents of location blocks. If you put the deny in a server block for ombi, it will work for that subdomains and all child location blocks. A subfolder proxy conf is a child location block of the main domain's server block. So to answer your last question, if you add the allow/deny into ombi subdomain's server block, it will only affect that subdomain, not the main domain as the main domain is served under a different server block.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Could be browser cache. Try an incognito window
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
If you give pihole its own ip, it will use macvlan network type. That type blocks connections between the container and the host (and everything else bridged on host) as a security feature. So swag won't be able to connect to pihole. We highly recommend running pihole on bare metal (an rpi gets the job done) instead of in docker. The subfolder confs get included in the main server block in the default site conf. You can edit that.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Likely your api key is not correctly added or is not correct If you're getting the default landing page, then likely the proxy conf is not activated correctly. Check its name, and check the server name directive
-
[Support] Linuxserver.io - Plex Media Server
Yeah, the time for a release to go from beta to stable is pretty short. I guess they're more like release candidates but that could change and it's all up to plex.
-
[Support] Linuxserver.io - Plex Media Server
That's really a question for plex. With that said, I've personally been on the beta/plexpass track for years and never had any issues.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Check your port forwarding for port 80 Follow this: https://blog.linuxserver.io/2019/07/10/troubleshooting-letsencrypt-image-port-mapping-and-forwarding/
-
[Support] Linuxserver.io - Plex Media Server
There is no stable 1.20 yet. When there is, our builder will push out a new image with it. You can set the version to docker and it will use the version the image comes with.
-
[Support] Linuxserver.io - OpenVPN AS
You need to use the host IP and the host mapped port in the proxy conf for it, instead of the container name and and container port
-
[Support] Linuxserver.io - Plex Media Server
That's the latest stable release. If you want betas, the instructions are in the readme.
-
[Support] Linuxserver.io - Ombi
There is already an image tag called "v4-preview" for testing and dev purposes. When tidusjar (ombi dev) pushes v4 to master/stable, our image will update the latest tag accordingly.
-
[Support] Linuxserver.io - SABnzbd
I mean, the EOL for python2 was announced 12 years ago. It's not like it crept up all of a sudden. 😁
-
[Support] Linuxserver.io - SABnzbd
Python2 is EOL and is therefore removed. It's in the changelog
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Follow this: https://blog.linuxserver.io/2019/07/10/troubleshooting-letsencrypt-image-port-mapping-and-forwarding/
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
I don't follow. What's "HTTP blank"? You'll have to be provide a clearer description of the issues you're having.
-
[Support] Linuxserver.io - Code-server
Just for web
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
In windows, make sure you enable the setting for displaying file extensions even if known
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Your nextcloud subdomain is showing the default landing page, which likely means that your nextcloud proxy conf is not activated properly. Is it named "nextcloud.subdomain.conf" and resides at "/config/nginx/proxy-confs"?
-
[Support] Linuxserver.io - Code-server
See here: https://github.com/cdr/code-server/issues/1284 It looks like because they are closed source, they are not included in code-server marketplace. But you can install them manually
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Set EXTRA_DOMAINS to *.subdomain.example.com
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Then you can do split dns, where your local dns server will tell clients to connect to the local ip when they request the domain.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
That's because cap-add is not an environment variable so you did not set that correctly. You need to pass it in extra parameters