dswede43

Members
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

dswede43's Achievements

Noob

Noob (1/14)

0

Reputation

1

Community Answers

  1. Nevermind I fixed the issue. I updated by nextcloud instance from version 24 to 27 by following these steps: 1. In Unraid Docker, click the nextcloud icon -> click edit -> update the nextcloud docker image tag to version 25 (nextcloud:25.0.0) -> click apply 2. In Unraid Docker, click the nextcloud icon then Console (this opens a terminal window within the Docker nextcloud instance) 3. Run the command "sudo -u abc php /config/www/nextcloud/updater/updater.phar" (this starts the nextcloud update to version 25) 4. Wait for the update to complete 5. Type "Y" for the "occ upgrade" command 6. Type "N" for maintenance mode -> then its done 7. Repeat steps 1-6 to update nextcloud from version 25 to 26 -> and again for version 26 to 27 (use "nextcloud:latest" for docker image tag here) This fixed my issue. My nextcloud instance runs fine now and is up to date
  2. Hello, I'm having the same issue. I just installed the nextcloud image with the image tag ":25.0.0". But now I can't access my nextcloud GUI because of a "404 not found nginx" error. Here are my docker container logs. using keys found in /config/keys **** The following active confs have different version dates than the samples that are shipped. **** **** This may be due to user customization or an update to the samples. **** **** You should compare the following files to the samples in the same folder and update them. **** **** Use the link at the top of the file to view the changelog. **** /config/nginx/nginx.conf /config/nginx/site-confs/default.conf **** The following site-confs have extensions other than .conf **** **** This may be due to user customization. **** **** You should review the files and rename them to use the .conf extension or remove them. **** **** nginx.conf will only include site-confs with the .conf extension. **** /config/nginx/site-confs/default [custom-init] No custom files found, skipping... [ls.io-init] done. Could not open input file: /app/www/public/cron.php Could not open input file: /app/www/public/cron.php I don't really understand what my logs mean? Could someone please provide me some guidance. Thanks
  3. Yes, it will work for any docker service you wish to reverse proxy
  4. So I never figured it out in the method I described above. But I did find a different method that achieved the same result successfully using Cloudflare tunnels. Following Ibracorps tutorial (https://docs.ibracorp.io/cloudflare-tunnel/) allowed me to reverse proxy all my docker services with an SSL certificate without any port forwards and according to Ibracorp, Cloudflare tunnelling is a faster and more secure method for self-hosting on the internet. Hope this helps you out and let me know if you have anymore questions
  5. Hosting a wordpress website on my unraid server and need FTP access to update and configure wordpress. I started the built-in FTP server in the unraid settings with an FTP user that has read/write access to the appdata/ folder where the wordpress/ root directory is found. However, when trying to update wordpress I get the error "Unable to locate WordPress root directory". I even tried making the unraid root the FTP user and I get the same result. Any ideas?
  6. Hello, Tried posting this on the cloudflare community but it wouldn't let me as "you can't include links in your posts" for some reason, even though I had no links. So here I am posting this here instead. My domain name is stratz.me. I am trying to create various subdomains to connect to my docker container GUIs over the internet via a secure encrypted connection. However, I keep getting 521 errors when trying to connect through https. My server is running unraid OS, reverse proxy is NGINX proxy manager with an origin certificate from cloudflare added to it, my router has port 80/443 forwarded to 180/1443 respectively (HTTP/HTTPS ports of NGINX proxy manager), and cloudflare SSL is set to full (strict). I have 2 questions: 1. My DNS records are shown below: The 1st A record points to my public IP and the 2nd points to the local IP of my unraid server, then I have a CNAME for my jellyfin docker that points to a duckdns domain, which points to my public IP. Could someone tell me if this is correct? 2. I came across another post with a similar issue as me and mentioned adding cloudflare iptables to the server to fix the issue, which included a link to some commands to do this as shown below: # For IPv4 addresses iptables -I INPUT -p tcp -m multiport --dports http,https -s $ip -j ACCEPT # For IPv6 addresses ip6tables -I INPUT -p tcp -m multiport --dports http,https -s $ip -j ACCEPT However, I'm confused as to where I run these commands? Do I open up the command prompt within my unraid server or SSH into the server? Some clarification here would be nice as I am not an experienced linux user. Also of note, when I unproxy my jellyfin CNAME on cloudflare, I no longer get a 521 error but instead get the error code "ERR_SSL_VERSION_OR_CIPHER_MISMATCH". Not sure if this helps but I thought I'd add this detail in regardless. Lastly, here are my results when testing my URL on the cloudflare diagnostics center. DNS results: HTTP results: SSL results: Please guide me as this is my first server I've ever built. Thank you