Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Nginx Forwarding

Featured Replies

Anyone have a working config for forwarding the web interface to domain/unraid working. 

server {  
		listen 443 ssl;
		server_name unraid.myserver.com;

		root /config/www;
		index index.html index.htm index.php;

		###SSL Certificates
		ssl_certificate /config/keys/letsencrypt/fullchain.pem;
		ssl_certificate_key /config/keys/letsencrypt/privkey.pem;

		###Diffie–Hellman key exchange ###
		ssl_dhparam /config/nginx/dhparams.pem;

		###SSL Ciphers
        ssl_protocols TLSv1.2;
        ssl_ciphers AES256+EECDH:AES256+EDH:!aNULL;
        ssl_prefer_server_ciphers on;
        ssl_ecdh_curve secp384r1;

        ssl_session_cache shared:SSL:10m;
        ssl_session_timeout 10m;

        ssl_stapling on;
        ssl_stapling_verify on;

        ### Add HTTP Strict Transport Security ###
        add_header Strict-Transport-Security "max-age=63072000; includeSubdomains";
        add_header Front-End-Https on;

#    client_max_body_size 0;
	
		fastcgi_buffers 64 4K;

location / {
            proxy_pass_header Authorization;
            proxy_pass https://UNRAID IP:443/;
            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_http_version 1.1;
            proxy_set_header Connection "";
            proxy_buffering off;
            proxy_request_buffering off;
            client_max_body_size 0;
            proxy_read_timeout  36000s;
            proxy_redirect off;
            proxy_ssl_session_reuse off;
    }
}

Save this as unraid, works fine, I have a similar for nextcloud.

  • Author

thanks peter this is exactly what i was looking for

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.