Skip to content

Instantly share code, notes, and snippets.

@jgravois
jgravois / _webserver.md
Last active January 9, 2025 09:27
a simple guide for getting a local web server set up

Do I have a web server running?


having a web server turned on doesn't necessarily mean you are serving pages on the world wide web. its what allows you to load your own static files (.html, .js etc.) in a browser via http://.

if you're not sure whether or not you have a web server running, no problem! its easy to confirm.

what happens when you visit http://localhost/?

// Unity built-in shader source. Copyright (c) 2016 Unity Technologies. MIT license (see license.txt)
Shader "Custom/Wireframe" {
Properties
{
_WireThickness ("Wire Thickness", RANGE(0, 800)) = 100
_Color("Color", Color) = (1,1,1,1)
}
SubShader
{