ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Alex Sage
    3. Best
    A
    • Profile
    • Following 8
    • Followers 2
    • Topics 374
    • Posts 3,641
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Testing oVirt...

      @fateknollogee That's awesome!

      posted in IT Discussion
      A
      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.

      posted in IT Discussion
      A
      Alex Sage
    • 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.

      posted in IT Discussion
      A
      Alex Sage
    • RE: GeekBench Results for Cloud Servers

      Oh, and Hetzner Cloud supports Custom ISO's too - you just have a submit a ticket 😉

      posted in IT Discussion
      A
      Alex Sage
    • RE: Looking at New Virtual Host Servers (ESXi)

      We always buy from xByte

      posted in IT Discussion
      A
      Alex Sage
    • RE: Average Rate for Emergency Service

      Normal Rate $100/Hour
      Emergency Rate $200/Hour
      Preventable Emergency $300/Hour

      posted in IT Discussion
      A
      Alex Sage
    • 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.

      posted in IT Discussion
      A
      Alex Sage
    • 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.

      https://www.ssllabs.com/

      posted in IT Discussion
      A
      Alex Sage
    • 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?

      https://github.com/lxc/lxd/issues/4757

      posted in IT Discussion
      A
      Alex Sage
    • RE: I have to change cloud drive service yet again

      @guyinpv What issues have you had?

      posted in IT Discussion
      A
      Alex Sage
    • 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;
              }
      }
      
      posted in IT Discussion
      A
      Alex Sage
    • 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.

      posted in IT Discussion
      A
      Alex Sage
    • 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?

      posted in IT Discussion
      A
      Alex Sage
    • RE: Install Nginx as a Reverse Proxy on Fedora 27

      @wirestyle22

      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
      
      
      }
      
      
      posted in IT Discussion
      A
      Alex Sage
    • RE: Traffic statistics for self-hosted WordPress

      @scottalanmiller said in Traffic statistics for self-hosted WordPress:

      Matomo

      Matomo is amazing

      posted in IT Discussion
      A
      Alex Sage
    • 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.

      posted in IT Discussion
      A
      Alex Sage
    • RE: BookStack Organization

      @black3dynamite said in BookStack Organization:

      This is what @JaredBusch is doing.
      https://mangolassi.it/topic/16482/bookstack-for-it-documentation/3

      0_1541438399049_5e2d5b55-ec5d-45f2-aee1-f2d8ace8a930-image.png

      Bookshelves have now been added as a new layer to the organisation system. Has this changed this layout at all @JaredBusch?

      posted in IT Discussion
      A
      Alex Sage
    • RE: BookStack Organization

      BookStack is now supported on LXQ for easy deployment

      posted in IT Discussion
      A
      Alex Sage
    • RE: PiHole - Nginx Reverse Proxy

      @travisdh1 Interesting, so it is working.

      That's correct the pointed to /admin

      posted in IT Discussion
      A
      Alex Sage
    • RE: Setup LetsEncrypt Certbot with CLoudFlare DNS authentication (Ubuntu)

      Nice Guide!

      I did this all and automated it for LXQ

      posted in IT Discussion
      A
      Alex Sage
    • 1
    • 2
    • 38
    • 39
    • 40
    • 41
    • 42
    • 41 / 42