I can't find anything on this subject besides it being possible as per Quarto's guide.
I have built a website through Quarto and GitHub before, so I have experience on the Quarto side of things. But are there tips for getting a website on an intranet web server, for a complete newbie to intranet web servers?
Just like any other static site generator, Quarto creates a directory full of HTML files and resources (by default it's _site
dir, as far as I can see). Its content is supposed to be ready to be dropped into a directory and served by any half-decent web server. So if we talking about starting from scratch:
your.intranet.server
address resolves to the server's IP address properly/usr/share/nginx/html
)_site/
into that default directory.It is by no means a full tutorial but should get you started, hopefully.