Windows default environment variables

Powershell display current variables ls env: User Path Variables %APPDATA% C:\Users\{username}\AppData\Roaming %HOMEPATH% C:\Users\{username} %LOCALAPPDATA% C:\Users\{username}\AppData\Local %TEMP% C:\Users\{username}\AppData\Local\Temp %TMP% C:\Users\{username}\AppData\Local\Temp %USERNAME% {username} %USERPROFILE% C:\Users\{username} %OneDrive% C:\Users\{username}\OneDrive Program Path Variables %ALLUSERSPROFILE% C:\ProgramData %COMMONPROGRAMFILES% C:\Program Files\Common Files %COMMONPROGRAMFILES(x86)% C:\Program Files (x86)\Common Files %CommonProgramW6432% C:\Program Files\Common Files %PROGRAMDATA% C:\ProgramData %PROGRAMFILES% C:\Program Files %ProgramW6432% C:\Program Files %PROGRAMFILES(X86)% C:\Program Files (x86)

Read More

Nginx not serving CSS files

In Chrome DEV tools check the Content Type for the css file. If it is not text/css you may have a incomplete Nginx configuration. Check the default Nginx conf file usually in /etc/nginx has the Mimetypes listed as below in the http section: http{ include /etc/nginx/mime.types; sendfile on;} Nginx Docs https://www.nginx.com/resources/wiki/start/topics/examples/full/

Read More