@fateknollogee That's awesome!
Best posts made by Alex Sage
-
RE: GeekBench Results for Cloud Servers
Assuming you're OK with having a server in Europe , it's hard to beat Hetzner Cloud for Price/Performance.
-
RE: Public IP for Server remote management
@dbeato said in Public IP for Server remote management:
I wouldn't place it on a Public IP, I would just manage it over Firewall Access Rules to locked down to few IP addresses or VPN.
Agreed. This is how I handle was well.
-
RE: GeekBench Results for Cloud Servers
Oh, and Hetzner Cloud supports Custom ISO's too - you just have a submit a ticket
-
RE: Average Rate for Emergency Service
Normal Rate $100/Hour
Emergency Rate $200/Hour
Preventable Emergency $300/Hour -
RE: Installing Cloudberry Backup on Fedora 28
@jaredbusch Thanks. I'll try again using a minimal install.
Hetzner Cloud lets you mount your own image, so I can test with a minimal install.
I'll create a snapshot, and always start from that.
-
RE: CentOS7 Server Apache Disable old TLS for higher versions
This looks OK, but I haven't tested it.
https://www.cloudibee.com/disabling-tls-apache/
I would check it with SSL Labs after you disable it.
-
RE: Installing LXD on Ubuntu 18.04 (The Right Way)
@black3dynamite said in Installing LXD on Ubuntu 18.04 (The Right Way):
Any source to backup installing lxd via snap?
-
RE: I have to change cloud drive service yet again
@guyinpv What issues have you had?
-
RE: PiHole - Nginx Reverse Proxy
Here is my working .conf file:
server { client_max_body_size 40M; listen 80; server_name pihole.domain.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://10.0.0.X:80/admin/; proxy_redirect off; } }
-
RE: Install Nginx as a Reverse Proxy on Fedora 27
@jaredbusch said in Install Nginx as a Reverse Proxy on Fedora 27:
certbot --nginx -n --email [email protected] --agree-tos --domains nc.domain.com
Adding
--redirect
tells certbot to redirect http to https. -
Synology High-Availability Cluster
Anyone every built a Synology High-Availability Cluster?
https://www.synology.com/en-us/dsm/feature/high_availability
Would you trust it, or am I better to just rsync the data ever so often?
-
RE: Install Nginx as a Reverse Proxy on Fedora 27
server { client_max_body_size 40M; server_name domain.com; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://10.157.95.208:80; proxy_redirect off; } listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem; # m$ ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem; #$ include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot server { if ($host = domain.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; server_name domain.com; return 404; # managed by Certbot }
-
Visual Studio Code - Git Integration
How do you integrate git with Visual Studio Code on Windows?
I have installed Visual Studio Code and it ask for git to be installed, so I installed git but I can't figure out how to get them integrated.
I assume you can commit, push, pull, etc all from VS code?
I googled, but sadly I didn'tr find anything.
-
RE: BookStack Organization
@black3dynamite said in BookStack Organization:
This is what @JaredBusch is doing.
https://mangolassi.it/topic/16482/bookstack-for-it-documentation/3Bookshelves have now been added as a new layer to the organisation system. Has this changed this layout at all @JaredBusch?
-
RE: BookStack Organization
BookStack is now supported on LXQ for easy deployment
-
RE: PiHole - Nginx Reverse Proxy
@travisdh1 Interesting, so it is working.
That's correct the pointed to /admin
-
RE: Setup LetsEncrypt Certbot with CLoudFlare DNS authentication (Ubuntu)
Nice Guide!
I did this all and automated it for LXQ