ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. scottalanmiller
    3. Posts
    • Profile
    • Following 170
    • Followers 168
    • Topics 3,474
    • Posts 151,817
    • Groups 1

    Posts

    Recent Best Controversial
    • RE: Moving off VMware Hypervisor to something else - need input

      @dave247 said in Moving off VMware Hypervisor to something else - need input:

      Looking at Nutanix VS Proxmox and surface level perception is that Proxmox could be better

      I would quite literally place one as the worst possible option and one as the best. VMware would be close to Nutanix on the bad side. Nutanix, VMware and Hyper-V these days I don't know any argument for how to use them in production.

      I like ProxMox and XCP-ng for pricing, licensing, experience, etc. There are loads of KVM systems out there, ProxMox is far from the only player. But I think you'd need a pretty incredible argument to use one given that most or all will be closed source (that means "not production ready" to us) and few have the experience, track record, support, industry knowledge and internal support of ProxMox.

      posted in IT Discussion
      scottalanmillerS
      scottalanmiller
    • RE: Moving off VMware Hypervisor to something else - need input

      @dave247 Nutanix is literally the absolute last thing I'd ever touch. No place in a production environment.

      ProxMox we have hundreds in production. If you want a KVM base (and what else would you realistically choose, XCP-ng maybe) then ProxMox is the place to be for sure.

      posted in IT Discussion
      scottalanmillerS
      scottalanmiller
    • RE: The Linux Filesystem Debate: XFS or Ext4?

      @Oksana XFS for speed AND resilience!

      posted in Starwind
      scottalanmillerS
      scottalanmiller
    • RE: Random Thread - Anything Goes

      @Danp ugh, I need to do some project to figure out how to control the user creation. I't never good on this platfform.

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: perc H700

      Works fine, doesn't need to be in a Dell.

      posted in IT Discussion
      scottalanmillerS
      scottalanmiller
    • RE: Gaming - What's everyone playing / hosting / looking to play

      Rainworld Downpour

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: What Are You Doing Right Now

      Quiet Sunday doing some coding on FoxRMM. Hopefully soon I'll head to a cafe with the kids.

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: Random Thread - Anything Goes

      @Danp TECHNICALLY, both are chimpanzees. 🙂

      Literally, chimps are a category. There are three chimps...

      Common Chimp
      Bonobo
      Human

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: What Is Microsoft SQL Server Replication? A Complete Overview

      Microsoft databases and "mission critical" can never be used together. Either your workload is important, or you can run it on this crap. But by deploying SQL Server, you are defining your workload as "not worth thinking about." Because clearly, it wasn't thought about.

      posted in Starwind
      scottalanmillerS
      scottalanmiller
    • RE: AWS PrivateLink vs BGP VPN

      @DustinB3403 yeah, only internal to AWS

      posted in IT Discussion
      scottalanmillerS
      scottalanmiller
    • RE: What Are You Doing Right Now

      Quiet Monday around here. Just hanging in the office getting some work done.

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: RAID 5 vs RAID 6: Which One Is Actually Safe in 2025?

      @dave247 said in RAID 5 vs RAID 6: Which One Is Actually Safe in 2025?:

      All my vendors recommend to avoid RAID all together, so we don't use it on the servers where I work.

      Even I rarely use it. With good backups, rapid rebuilds, and highly reliable NVMe, RAID has become a very special use case.

      posted in Starwind
      scottalanmillerS
      scottalanmiller
    • RE: What Are You Doing Right Now

      @DustinB3403 That a whole version back. No current release that I'm aware of.

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: What Are You Doing Right Now

      @DustinB3403 said in What Are You Doing Right Now:

      @scottalanmiller said in What Are You Doing Right Now:

      @DustinB3403 said in What Are You Doing Right Now:

      @travisdh1 said in What Are You Doing Right Now:

      I had a fun night last night adding storage to a server. When I went to move VM storage location, found a checkpoint (Hyper-V, ugh) from 2018.... Took a long while to coalesce.

      This morning everything had finally coalesced and moved to the new storage array. Only took ~10 hours.

      You're using Hyper-V? How's that been going and what management tools are you using?

      I had some lunatic INSTALL it in the last two months! W.T.F.

      Was it installed properly, IE with the Hyper-V iso and not via a Windows Server Role installation?

      Does that still exist?

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: Gaming - What's everyone playing / hosting / looking to play

      My eldest is in a Street Fighter and Mortal Kombat regional competition this weekend!

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: What Are You Doing Right Now

      @DustinB3403 said in What Are You Doing Right Now:

      @travisdh1 said in What Are You Doing Right Now:

      I had a fun night last night adding storage to a server. When I went to move VM storage location, found a checkpoint (Hyper-V, ugh) from 2018.... Took a long while to coalesce.

      This morning everything had finally coalesced and moved to the new storage array. Only took ~10 hours.

      You're using Hyper-V? How's that been going and what management tools are you using?

      I had some lunatic INSTALL it in the last two months! W.T.F.

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: Nginx Configuration for PHP Laravel & ReactJS in Single Site

      Some assumptions here. First, only configured for port 80, make sure you address TLS somehow (another proxy in front of this or add config here.)

      You have a single folder /var/www/myapp in which you have myfrontend containing your ReactJS application and myapi that contains your Laravel application.

      Tested with Nginx on Linux.

      posted in IT Discussion
      scottalanmillerS
      scottalanmiller
    • Nginx Configuration for PHP Laravel & ReactJS in Single Site

      Laravel + ReactJS is a super common combination and getting it working right under an Nginx front end can be confusing. Here is a quick config to copy!

      server {
          listen 80;
          listen [::]:80;
          server_name app.myserver.com;
      
          # ---- React SPA ----
          location / {
          	root /var/www/myapp/myfrontend/dist;
          	index index.html;
              try_files $uri /index.html;
          }
      
          add_header X-Frame-Options "SAMEORIGIN";
          add_header X-Content-Type-Options "nosniff";
      
          # ---- Map /api/* to Laravel public ----
          location ^~ /api/ {
              root /var/www/myapp/myapi/public/;
      	index index.php;
              try_files $uri $uri/ /index.php?$query_string;
          }
      
          # ---- PHP under /api/* (MUST use fastcgi.conf, not the snippet) ----
          #location ~ ^/api/.+\.php$ {
          location ~ \.php$ {
              root /var/www/myapp/myapi/public/;
      
              # Split PATH_INFO (rarely needed by Laravel, but safe)
              fastcgi_split_path_info ^/api/(.+\.php)(/.*)$;
      
              include fastcgi.conf;                # <-- NOT snippets/fastcgi-php.conf
              fastcgi_pass unix:/run/php/php8.4-fpm.sock;
              fastcgi_index index.php;
      
      	fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
          }
      
          # Block dotfiles anywhere (SPA + API)
          location ~ /\. { deny all; }
      }
      
      posted in IT Discussion php nginx laravel reactjs linux
      scottalanmillerS
      scottalanmiller
    • RE: Gaming - What's everyone playing / hosting / looking to play

      We've been playing the Duck Detective series.

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • RE: Gaming - What's everyone playing / hosting / looking to play

      We've been playing the Duck Detective series.

      posted in Water Closet
      scottalanmillerS
      scottalanmiller
    • 1
    • 2
    • 3
    • 4
    • 5
    • 7590
    • 7591
    • 1 / 7591