Everything posted by ptr727
-
HTTP to HTTPS redirection uses wrong URI for wildcard certs
Unraid 6.7.0 Server name is Server-2, local TLD is set to "home.insanegenius.net". Static IP, DNS entry for server-2.home.insanegenius.net. I am using my own wildcard certificate for *.home.insanegenius.net. CN = *.home.insanegenius.net OU = PositiveSSL Wildcard OU = Domain Control Validated I copy my PEM file to config/ssl/certs/certficate_bundle.pem This server is called server-2.home.insanegenius.net. When I access https://server-2.home.insanegenius.net all is well, and it uses the *.home.insanegenius.net certificate as expected. When I access http://server-2.home.insanegenius.net, I get a 302 redirect, and the browser tries to open https://%2A.home.insanegenius.net/. I use Google Chrome developer tools, and I can see the 302 redirect as follows: Request: Request URL: http://server-2.home.insanegenius.net/ Request Method: GET Status Code: 302 Moved Temporarily Remote Address: 192.168.1.36:80 Referrer Policy: no-referrer-when-downgrade Response: Connection: keep-alive Content-Length: 154 Content-Type: text/html Date: Thu, 16 May 2019 15:56:28 GMT Location: https://*.home.insanegenius.net:443/ Server: nginx Nginx incorrectly returns an invalid URI, "https://*.insanegenius.net:443" instead of the correct "https://server-2.home.insanegenius.net". When I look in the Nginx emhttp-servers.conf file, I can see that whatever code created this config, created an invalid 302 redirect value. server { # # Redirect http requests to https # listen *:80 default_server; listen [::]:80 default_server; return 302 https://*.home.insanegenius.net:443$request_uri; } It looks like the logic incorrectly uses the SSL cert CN instead of the server FQDN. The logic should be fixed, or can be avoided by using something generic like "return 302 https://$host$request_uri;"
-
[Support] Linuxserver.io - Nginx
Hi, I am trying to use ssi, but it looks like it is not working as expected. Is ssi support enabled for nginx in this container? Update: After waiting a few minutes and refreshing the page SSI started working. Weird, on first use it takes about 15s for the first page load, no SSI, come back later, refresh, SSI works. Any ideas how to get he first page load faster, and how to get SSI working on first load?
-
[Support] Data-Monkey - netdata
Hi, I temporarily removed my cache to make space for new HDD's, and noticed the container would not start. I think the issue is the config path explicitly points to a cache path instead of the appdata share. Maybe wrong: /etc/netdata/override : /mnt/cache/appdata/netdata/ Works with no cache: /etc/netdata/override : /mnt/user/appdata/netdata
-
[Support] Djoss - Nginx Proxy Manager
Hi, this seems like a really cool project. I currently run nginx with a handcrafted configuration and custom ssl certs. I will be trying to replace my custom config with yours. One thing I would like to ask you to add is hosting a simple static site using nginx? E.g. I have a static page that has links to all the services in my home, my wife has a bookmark to it, and she uses it whenever she needs access something I host. In my config the default site, and an explicit host, points to a directory, and I manually edit the content as needed. If you can add such a feature, I would not have to run a second nginx instance.
-
Virt-Manager, Intel-GPU-Tools and more Dockers
Ah, got it, working now. Please add the instructions to your git md, and the support thread, will save many people lots of time to get things working.
-
Virt-Manager, Intel-GPU-Tools and more Dockers
Thx, I created the docker, added netcat-openbsd, and still get unable to connect to libvirt. Anything else I'm missing? Btw, I suggest you remove TZ from your template, it is set by Unraid to the system TZ, no need for users to add it.
-
Virt-Manager, Intel-GPU-Tools and more Dockers
I was about to add the XML file to my templates, and I noticed some activity on github, that looks like getting ready for adding to CA, if so, I'll just wait?
-
Virt-Manager, Intel-GPU-Tools and more Dockers
Hi, since djaydev/docker-virt-manager is not in CA, how do I use the XML template to create my docker using https://github.com/djaydev/docker-virt-manager/tree/master/UnRaid/template?
-
Adaptec 7805Q Unable to switch from RAID to HBA
Hi, I am finally ready to convert one of my Hyper-V servers to Unraid. This machine has 8 drives, in 3 volumes, managed by an Adaptec 7805Q RAID controller. I am using the Adaptec BIOS utility, I deleted all volumes, I unintialized 6 of the 8 drives, 2 drives are grayed out, I can't select them to be uninitialized. When I try to switch from RAID to HBA, I get an error that I need to delete all volumes and uninitialize all drives. Any idea why some drives cannot be uninitialized, or an alternate way to force the switch to HBA mode?? Update: I mounted and booted into the bootable ISO support environment, and found that MaxCache was enabled on those drives. Disabled it, and was able to enable HBA mode. (MaxCache is not configurable from the BIOS)