mattie112

Members
  • Posts

    350
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by mattie112

  1. Good one, it seems https://github.com/paperless-ngx/paperless-ngx was chosen
  2. Can you access your domain externally on port 80? (unsecured http)
  3. Is there perhaps anything in the log regarding the plugin? I know there is an 'plugin-error' directory of some kinds on flash but I don't know if something gets logged.
  4. Hm, I have rebooted my server a couple of weeks ago and I just confirmed that it listed as installed (and working). So at least I don't have issues here. Plugin version: 2021.05.21 Unraid: 6.9.2 (so perhaps there are changes in the 6.10 ?)
  5. Sure, NPM uses a docker volume (/mnt/user/appdata/NginxProxyManager) by default so you can just `cp` files from the Unraid CLI. You need to check the exact folders / locations not 100% sure about that.
  6. I would suggest to get cloudflare out of the equation just to see where the problem might be. I personally don't use cloudflare but I would do something in my pc's host file to force it to your external instead of cloudflare. Assuming windows: C:\Windows\System32\drivers\etc\hosts (or /etc/hosts on linx) Add your.domain.name.tlc 1.2.3.4 where 1.2.3.4 is either your external ip or your internal npm ip (try both) If that works, then cloudflare (connection) is to blame (somehow) if that doesntwork first debug your own setup.
  7. Perhaps your "congratulations" page is cached by Cloudflare? I believe it can do that for static websites. You could for example check the port forwarding on your router, disable that and if the page still loads then you are 100% not serving that page. Also in the commandline you can do "docker ps" to see all containers running, this includes all the ports they listen on so perhaps that might give some insight.
  8. Yes you can use a reverse proxy as Nginx (or the NginxProxyManager docker container). However if you want a SSL certificate you will need to at least expose your proxy to the internet (for letsencrypt to work, self-signed or other certs can work without internet access). You can however add an ACL so only certain IP's can access your container. The communication between your proxy and paperless is indeed unencrypted. You can't really avoid that. There must be some place that decrypts the traffic. However in order to MTM traffic from container A to container B attackers need to have access to your server. And be honest if they have server access why would they care to snoop your data? They can just download the database or something like that. So: I would suggest to try out the NginxProxyManager container, it is listed in the CA appstore
  9. So what exactly is the problem? When using custom certificate you need to supply your own certificate/key. Is that cert not working? Are you unable to upload? You can also get a letsencrypt certificate just to get your stuff working again or is there a reason why you cannot do that?
  10. Can you still access the (sqlite) database? Are the config files and certs still present?
  11. And what about "See the logfile /tmp/tmpy2mllf8d/log or re-run Certbot with -v for more details." ? Or perhaps try running it manually please see a couple of posts back.
  12. Well that looks like certbot does not see any certificates that might be due for renew. So I guess it never created a certificate. Perhaps you can try to manually request a certificate and see if that works? https://www.digitalocean.com/community/tutorials/how-to-use-certbot-standalone-mode-to-retrieve-let-s-encrypt-ssl-certificates-on-ubuntu-16-04 Also make sure you can access unsecured port 80 (for the .well-known directory) from the public internet as that is requried.
  13. Can you try to do it manually? See a couple of posts back, this might give a bit more output. Usually this is somekind of DNS/port forward issue as letsencrypt cannot access your host correctly
  14. So what is the first part that doesn't work. You have a domain and that shows a site from Godaddy? The something is wrong there (or on cloudflare) as it never gets to your NPM. You can also try a website without SSL just to exclude that from your problems.
  15. O wow that is strange, it should fetch https://ip-ranges.amazonaws.com/ip-ranges.json if I'm correct and that URL works fine here. Can you access that URL from your browser?
  16. Open console Then do: And check if anything is "corrupted" in that file. The first number is the line number (your error lists 300 so look around that). You can also delete and reinstall the container if you have only a single site you can easily reconfigure.
  17. You can try to open a shell for that container and then check that file to see what is wrong. Did you create any custom config? Or perhaps a whitelist of IP addresses? Perhaps a typo or something.
  18. Did you try running it manually to see if you get a different error? (see also the other 100 people that found things when running manually perhaps your issue is the same)
  19. Can you access your domain from a remote connection? It seems that it cannot access your domain and then it won't supply a certificate.
  20. So your apps already have SSL? Why do you want NPM then? A bad gateway error is that NPM cannot access your application.
  21. And there is no more logging? Try to run it manually: https://forums.unraid.net/topic/76460-support-djoss-nginx-proxy-manager/page/56/?tab=comments#comment-1000941
  22. You should only forward external ports 80 and 443 to your container. Is what you list the port forward in your router or the container ports? The 8181 port is just for management and should not be forwarded (in my opinion) So: external 80 -> container 1880 external 443 -> container 18443
  23. Please just use the search.... https://forums.unraid.net/search/?q=reset password&quick=1&type=forums_topic&item=76460 But in case you cant find it:
  24. Is this not an setting/issue with nextcloud? Does that have a redirect / force domain option?
  25. There should be an option to redirect traffic to HTTPS ('force https' or something like that). I can't currently check how it is called exactly as I am having some PSU issues so my server is offline