Shamalamadindong

Members
  • Posts

    195
  • Joined

  • Last visited

Everything posted by Shamalamadindong

  1. Trust me when i tell you rolling your own in a small VM is way more simple.
  2. What actually happens when you try to visit /ru?
  3. https://www.humblebundle.com/lifehacker-software-bundle Decent enough deal. Any one of them is worth the 15$
  4. https://security.googleblog.com/2016/10/distrusting-wosign-and-startcom.html StartSSL certs will no longer be trusted as of January 31st.
  5. Better singlecore performance is likely to come out on top in transcoding.
  6. Port 80 and 443 to whatever the corresponding ports are on your Apache container. Note that some routers may not allow you to test your domain from inside your own network. Always test using a VPN or your phone.
  7. Development on Guacamole has stalled somewhat so there isn't actually a reason to change anything at the moment. Just use Aptalca's container or set up a VM.
  8. https://github.com/causefx/iDashboard-PHP Crude but effective if you just need a difference between yourself and everyone else. Not at all secure probably though. Edit: on the topic of reverse proxy authentication, has any of you seen this? https://github.com/bitly/oauth2_proxy Some further reading, http://developers.canal-plus.com/blog/install-nginx-reverse-proxy-with-github-oauth2/ https://jasonbarto.com/authenticate-your-services-with-google-nginx-and-oauth2/ (ignore the ssl warning, hes still using a Startcom cert)
  9. Any motherboard capable of a dual E5-2670 setup will likely have a GPU built in.
  10. Correct. Edit: Does anyone have Transmission working?
  11. Absurdly, this worked for a couple of days and now it has stopped working. Weird thing is, it still works on Android Chrome but not on Windows Chrome.
  12. Could we maybe get something like this? Right now there are a myriad of guides and tutorials posted all over the place.
  13. This should help, http://lime-technology.com/forum/index.php?topic=51466.0
  14. Bios is up to date? Do you have a different GPU you could try?
  15. https://my.vmware.com/en/web/vmware/evalcenter?p=converter After that this should be able to convert it to something usable in Unraid. (assuming VMware's thing doesn't have that function built in) https://www.starwindsoftware.com/converter Haven't actually ever tried this but it should work.
  16. My registrar doesn't include email services, i'd have to set up my own mailserver. I have it working now by the way. The Lets Encrypt docker is handling ssl and i'm reverse proxying to the Apache docker through nginx.
  17. Hi, small request. Could add in 10 bit x265 support? https://mattgadient.com/2016/02/15/how-to-10-bit-x264-and-10-12-bit-x265-encodes-with-handbrake-mac-os-x-linux-windows/
  18. Are you low bidding them? Cheapest i'm finding is $52 shipped
  19. For anyone who would rather stick to Apache but still use Lets Encrypt you can reverse proxy nginx to your existing Apache webserver. location / { proxy_pass http://myapacheip; # my existing apache container proxy_set_header Host $host; # re-write redirects to http as to https proxy_redirect http:// https://; } After that you just have to edit any hardcoded urls to https. Note, doesn't work if you are routing through Cloudflare, browsers will say there are too many redirects.
  20. Primarily because everything is already working, except SSL.
  21. Yea i have been looking for something like that but i can't really find anything that looks like it. I've just emailed my registrar so i guess i will know more tomorrow.
  22. Alternatively, you can set up a VM following this excellent guide, https://thatservernerd.com/2016/02/25/install-guacamole-on-centos-76-the-super-easy-way/
  23. I've been agonizing over a response to specific parts of your reply for the last half hour but i think that is going to waste both our times. Suffice to say i did not intent my post to be received in the way it was. Regarding the Startssl thing, i've been in contact with the live chat however they were unable to help me, they are pointing to my registrar which they say has to "build" my email in to the whois info even though my domains whois states my email as the administrative and technical contact and my registrar is likely to point me at their paid ssl package. From the way things look right now i think i'm just going to set up a VM and get Apache and Lets Encrypt going manually.
  24. Hold on, relax. Give me a moment to explain my train of thought. Linuxserver.io - Apache reverse proxy container, there's a guide on how to set this up. However, the maintainers of said container appear to have switched over to a different container also maintained by them based on nginx. Linuxserver.io - Nginx container, there is no guide on how to set this up and the container is seemingly not preconfigured to use as a reverse proxy. (i don't know anything about nginx so forgive me if its a very simple matter) aptalca - Lets Encrypt container, based on nginx and based on posts in the support thread, ready to use as a reverse proxy. Maintainer has seemingly joined Linuxserver.io but the container has not been ported over yet. (correct me if i'm wrong on that bit) My suggestion to rewrite the guide and/or deprecate the apache container was based on the fact that at some point novice users like myself run in to problems, we then head to the support thread for the container and here we learn the maintainers are using an alternative but there's no guide for it. You then have a third option in the lets encrypt container for which there do exist some instructions in the support thread. Point is, it gets confusing on what is the best option for novice users. When you first start looking in to setting up a reverse proxy you come across your guide first and start trying that. When problems arise however support is made more difficult by the fact the maintainers are no longer using it themselves. As a novice one will naturally drift to the apparently best long term supported option which at the moment in my mind does not appear to be the Apache docker. Which is why i suggested rewriting the guide to reflect that situation and/or deprecating the apache container. Please understand, i have a lot of respect for the work you guys do. My suggestion was based entirely in the hopes of making things less complicated for everyone in the long run by preventing people from picking apache today so they aren't faced with a situation where the best option is to switch over and have to redo everything in the future. As i hope i've made clear, my configuration problems are not why i made the suggestion. Edit: apologies but now that i happen to have your attention, any plans on a Guacamole container?