Services/Nginx: Difference between revisions

From Fundamental Ramen
Jump to navigation Jump to search
No edit summary
No edit summary
Line 8: Line 8:
</source>
</source>
|}
|}
== Install nginx on macOS 10.13+ ==
<source lang="bash">
brew tap denji/nginx
brew install nginx-full \
  --with-echo-module \
  --with-autols-module \
  --with-geoip2-module \
  --with-http2 \
  --with-upload-module \
  --with-upload-progress-module
</source>


= Priority of location =
= Priority of location =

Revision as of 11:48, 19 February 2019

Quick References

TODO Command
List directory
autoindex on;

Install nginx on macOS 10.13+

brew tap denji/nginx

brew install nginx-full \
  --with-echo-module \
  --with-autols-module \
  --with-geoip2-module \
  --with-http2 \
  --with-upload-module \
  --with-upload-progress-module

Priority of location