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.

Sinister

Members
  • Joined

  • Last visited

Everything posted by Sinister

  1. i certainly dont have it working i did everything that was outlined in the video made sure it was right down to the last colon still no dice im waiting for the answer like everyone else
  2. same ive tried asking and been at this for 16 hours seen the video back and forth many times definitely something missing here only an a super advanced person would know
  3. ill definitely go ahead and do that i just figured an expert would be able to pinpoint whats wrong as ive seen this mentioned a few times for now ill post my config files this is my nextcloud config php <?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'datadirectory' => '/data', 'instanceid' => 'ocvagavyiudq', 'passwordsalt' => '66cAD3+nO/lNspfvs9urUMR3Y/n3Am', 'secret' => 'qXhHGYee7Dftjk3h/6a/UPchu1pWJBUgHNZm/iLiIExSwZjJ', 'trusted_domains' => array ( 0 => '192.168.1.113:444', 1 => 'xxxxx.duckdns.org', ), 'overwrite.cli.url' => 'https://xxxxxx.duckdns.org/', 'overwritehost' => 'xxxxx.duckdns.org', 'overwriteprotocol' => 'https', 'dbtype' => 'mysql', 'version' => '14.0.1.1', 'dbname' => 'nextcloud', 'dbhost' => '192.168.1.113:3306', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'xxxxxxxx', 'dbpassword' => 'xxxxxxxxx', 'installed' => true, ); this is my proxy-confs file # make sure that your dns has a cname set for nextcloud # assuming this container is called "letsencrypt", edit your nextcloud container's config # located at /config/www/nextcloud/config/config.php and add the following lines before the ");": # 'trusted_proxies' => ['letsencrypt'], # 'overwrite.cli.url' => 'https://nextcloud.your-domain.com/', # 'overwritehost' => 'nextcloud.your-domain.com', # 'overwriteprotocol' => 'https', # # Also don't forget to add your domain name to the trusted domains array. It should look somewhat like this: # array ( # 0 => '192.168.0.1:444', # This line may look different on your setup, don't modify it. # 1 => 'nextcloud.your-domain.com', # ), server { listen 443 ssl; server_name xxxxx.duckdns.org*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_nextcloud nextcloud; proxy_max_temp_file_size 2048m; proxy_pass https://$upstream_nextcloud:443; } }
  4. Maybe this is the correct place to ask for help i am unsure but here goes so im trying to setup nextcloud using spaceinvaders reverse proxy guide ive followed the instructions to a T or as closely as i could the problem im facing is with sonarr nextcloud pretty much anything all i get is the letsencrypt landing page that says welcome to our server there are no errors in the logs status is server ready can anyone tell me where i messed up ?
  5. Hi im unsure if anyone else is experiencing this issue but ive followed everything down to the letter and when i go to the sonarr webpage outside my network i keep getting the letsencrypt landing page can someone tell me what i did wrong ? Welcome to our server The website is currently being setup under this address. For help and support, please contact: [email protected] this is my nextcloud config php <?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'datadirectory' => '/data', 'instanceid' => 'ocvagavyiudq', 'passwordsalt' => '66cAD3+nO/lNspfvs9urUMR3Y/n3Am', 'secret' => 'qXhHGYee7Dftjk3h/6a/UPchu1pWJBUgHNZm/iLiIExSwZjJ', 'trusted_domains' => array ( 0 => '192.168.1.113:444', 1 => 'xxxxx.duckdns.org', ), 'overwrite.cli.url' => 'https://xxxxx.duckdns.org/', 'overwritehost' => 'xxxxx.duckdns.org', 'overwriteprotocol' => 'https', 'dbtype' => 'mysql', 'version' => '14.0.1.1', 'dbname' => 'nextcloud', 'dbhost' => '192.168.1.113:3306', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'xxxxxxxx', 'dbpassword' => 'xxxxxxxxx', 'installed' => true, ); this is my proxy-confs file # make sure that your dns has a cname set for nextcloud # assuming this container is called "letsencrypt", edit your nextcloud container's config # located at /config/www/nextcloud/config/config.php and add the following lines before the ");": # 'trusted_proxies' => ['letsencrypt'], # 'overwrite.cli.url' => 'https://nextcloud.your-domain.com/', # 'overwritehost' => 'nextcloud.your-domain.com', # 'overwriteprotocol' => 'https', # # Also don't forget to add your domain name to the trusted domains array. It should look somewhat like this: # array ( # 0 => '192.168.0.1:444', # This line may look different on your setup, don't modify it. # 1 => 'nextcloud.your-domain.com', # ), server { listen 443 ssl; server_name xxxxx.duckdns.org*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_nextcloud nextcloud; proxy_max_temp_file_size 2048m; proxy_pass https://$upstream_nextcloud:443; } }
  6. that seems to have fixed the issue its working thank you
  7. location /ombi { return 301 $scheme://$host/ombi/; } location /ombi/ { proxy_pass http://192.168.1.113:3579; proxy_set_header Host $host; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Ssl on; proxy_set_header X-Forwarded-Proto $scheme; proxy_read_timeout 90; proxy_redirect http://192.168.1.113:3579 https://$host; } if ($http_referer ~* /ombi/) { rewrite ^/dist/(.*) $scheme://$host/ombi/dist/$1 permanent; } im sure im messing up something trying to reverse proxy ombi letsencrypt logs keep telling me nginx: [emerg] unknown directive " return" in /config/nginx/site-confs/default:80 nginx: [emerg] unknown directive " return" in /config/nginx/site-confs/default:80 can someone tell me what it is im messing up ?
  8. Not sure what OS your running but if it is Windows then spaceinvader one tutorial works flawlessly. If its linux like my issue was then I'm no expert by any means but I can tell you what worked in my specific case
  9. Thank you for all the suggestions i managed to figure out what the problem was for whatever reason auto login needed to be enabled. as well as my local subnet being the issue they cant be identical in linux though this isnt a problem on windows . lastly having the (use this network only for its local resources) box enabled makes it not work (SOLVED)
  10. I believe I already know which one your talking about and it' is enabled by default I just connected through my mobile device and I can access everything with no problem
  11. so here is what i ended up doing i loaded up solus and imported the config file and it worked with no problem i then found the directory where it made the certificates and then copied them to a usb stick i also made sure to take note of the settings used in the openvpn plugin and copied them exactly. after reinstalling linux mint and i was able to connect both in solus and in linux mint the last hurdle for me now is that i cant connect to any shares or my unraid server. though when i use teamviewer to access my home network and launch the openvpn docker it does show my 1 client as connected am i missing something simple ? to be clear i do connect successfully via vpn but cant access anything on the network
  12. ahh ok thought so makes me feel less crazy. does it work in mate? and if so is there strong difference between the two ?
  13. its only highlighted i tried to import my client file from my access server
  14. this is what i get when trying to import my client file
  15. what did you do to set it up ? im fairly new to linux but not a newbie to tech ive tried getting this thing going using the network manager and it just will not connect no matter what it connects if im on windows using the openvpngui or on my android smart phone so what gives here ?
  16. is anyone familiar with my particular issue or can point me in the right direction ?
  17. i am aware of that what i am trying to do is connect remotely to my openvpn server from a linux mint machine but it doesnt seem to be as easy as with windows openvpngui which is why im asking for help
  18. Might be a very silly question but has anyone ever managed to get this to work on a linux OS ? i recently switched from windows to linux mint 18 and ive tried following the very simple instructions of creating a new connection and tried launching it from the terminal nothing seems to be working for me
  19. well that certainly fixed my problem but i had a new one which i managed to quickly figure out thank you so much for your patience everything works now
  20. so that seems to have fixed the problem with letsencrypt but i still cant seem to connect securely default ive attached my default file to confirm im trying to connect through https://myipaddress:2202/ubooquity http://myipaddress:2202/ubooquity still works just fine did i miss anything ?
  21. i have removed the config line default now i get nginx: [emerg] unexpected "}" in /config/nginx/site-confs/default:74nginx: [emerg] unexpected "}" in /config/nginx/site-confs/default:74nginx: [emerg] unexpected "}" in /config/nginx/s
  22. default posted is my default file not sure what else i could do
  23. what i had on line 72 was location /ubooquity { proxy_pass http://192.168.0.1:2202/ubooquity; include /config/nginx/proxy.conf; } was this wrong ?

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.