readme + docker

This commit is contained in:
Nicholas Orlowsky 2022-02-03 18:25:43 -06:00
parent 900325402c
commit 647a96ed44
No known key found for this signature in database
GPG key ID: DA69F4D62590FB49
7 changed files with 187 additions and 100 deletions

30
nginx/nginx.conf Normal file
View file

@ -0,0 +1,30 @@
server {
gzip on;
gzip_types
application/atom+xml
application/geo+json
application/javascript
application/x-javascript
application/json
application/ld+json
application/manifest+json
application/rdf+xml
application/rss+xml
application/xhtml+xml
application/xml
font/eot
font/otf
font/ttf
image/svg+xml
text/css
text/javascript
text/plain
text/xml;
gzip_min_length 256;
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}