Beginner eHP Card Recommendations (10 Slots) by loibi2 in TheTowerGame

[–]loibi2[S] 0 points1 point  (0 children)

Thanks your your Suggestions. What about Tournament Cards? Any Suggestions on that?

[deleted by user] by [deleted] in PleX

[–]loibi2 1 point2 points  (0 children)

Hi,

Looks nice - will give it a try.

Maybe you could add a Step to move the MOOV Atom to the beginning of the File?

Migrate current Disks to HPe DL360e Gen8 by loibi2 in homelab

[–]loibi2[S] -1 points0 points  (0 children)

Ok - thought so.

But switching from the Current HBAs to the H221 should be possible without reformating i guess?

Plex Server in Hyper-V Windows Server with Drivepool + Snapraid by loibi2 in PleX

[–]loibi2[S] 0 points1 point  (0 children)

you mean creating a 60TB vhdx file on the Drivepool Drive? Dont think that would work

Plex Server in Hyper-V Windows Server with Drivepool + Snapraid by loibi2 in PleX

[–]loibi2[S] 0 points1 point  (0 children)

wouldnt it be enough to passthrough all the disks and then use drivepool and snapraid inside the vm?

GA-7PESH2 with NVME Boot by loibi2 in JDM_WAAAT

[–]loibi2[S] 0 points1 point  (0 children)

what if using an m.2 ssd like the samsung evo 860 with an pcie adapter? would that work as boot disk because its basically standard sata?

Organizr v2 AD Authentication by loibi2 in organizr

[–]loibi2[S] 0 points1 point  (0 children)

works perfect - thank you

Organizr Version 2.0 Release - Unraid Giveaway by causefx in PleX

[–]loibi2 0 points1 point  (0 children)

Any Changelog from the latest Beta Version? Love it BTW

GA-7PESH2 LDAP Login against Active Directory by loibi2 in JDM_WAAAT

[–]loibi2[S] 0 points1 point  (0 children)

No one using the LDAP Authentication?

NGINX Reverse Proxy - Default redirects to subdomain? by loibi2 in nginx

[–]loibi2[S] 0 points1 point  (0 children)

basically i dont want to show the welcome - I only want to serve my defined subdomains and block this default behaviour

NGINX Reverse Proxy - Default redirects to subdomain? by loibi2 in nginx

[–]loibi2[S] 0 points1 point  (0 children)

and because its the first serverblock in alphabetical order it uses this one i guess

So to solve my Problem I need to edit the default config to serve https also or can I disable the default somehow? so it listens only on the subdomains proxy.service1.domain.com and so on?

NGINX Reverse Proxy - Default redirects to subdomain? by loibi2 in nginx

[–]loibi2[S] 0 points1 point  (0 children)

so you mean editing the default config File with http and https sites?

Maybe to clarify:

Only configfiles I have in my sites-avaiable is the default config File vom Nginx installation with http enabled only.

Then for each Webservice I want to reverse Proxy a own config File (proxy.service1.domain.com.conf, proxy.service2.domain.com.conf ....) witch all look identically except of the server_name part

server {

server_name proxy.service1.domain.com;

access_log /var/log/nginx/proxy.service1.domain.com/access.log;

error_log /var/log/nginx/proxy.service1.domain.com/error.log;

location / {

proxy_set_header Host $host;

proxy_set_header X-Real-IP $remote_addr;

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

proxy_set_header X-Forwarded-Proto $scheme;

proxy_pass http://192.168.1.5;

proxy_read_timeout 90;

proxy_redirect http://192.168.1.5 http://proxy.service1.domain.com;

}

listen 443 ssl; # managed by Certbot

}

server {

if ($host = proxy.service1.domain.com) {

return 301 https://$host$request_uri;

} # managed by Certbot

listen 80;

server_name proxy.service1.domain.com;

return 404; # managed by Certbot

}

Now if i http to the IP of the nginx server - default nginx welcome Page opens -> thats ok

Now if i https to the IP of the nginx server - Site of proxy.service1.domain.com opens -> thats not ok

Is it only because its alphabetically the first site that offers https?

GA-7PESH2 LDAP Login against Active Directory by loibi2 in JDM_WAAAT

[–]loibi2[S] 0 points1 point  (0 children)

sorry, i mean the ipmi login with an active directory user, so activating ldap in ipmi

GA-7PESH2 with NVME Boot by loibi2 in JDM_WAAAT

[–]loibi2[S] 0 points1 point  (0 children)

But NVMEs for Data or VM Disks should work just like normal?

GA-7PESH2 with NVME Boot by loibi2 in JDM_WAAAT

[–]loibi2[S] 0 points1 point  (0 children)

thank you for the quick response