File tree 5 files changed +22
-13
lines changed
5 files changed +22
-13
lines changed Original file line number Diff line number Diff line change
1
+ # ###############################################################################
2
+ # This .gitignore file was automatically created by Microsoft(R) Visual Studio.
3
+ # ###############################################################################
4
+
5
+ /.vs
Original file line number Diff line number Diff line change 1
- FROM nginx:1.10.2
2
- MAINTAINER Kyle Mathews
"[email protected] "
1
+ FROM nginx:1.13-alpine
3
2
4
3
RUN rm /etc/nginx/nginx.conf /etc/nginx/mime.types
5
4
COPY nginx.conf /etc/nginx/nginx.conf
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -21,7 +21,9 @@ types {
21
21
22
22
# JavaScript
23
23
application/javascript js;
24
+ application/x-javascript js;
24
25
application/json json;
26
+ text/json json;
25
27
26
28
# Manifest files
27
29
application/x-web-app-manifest+json webapp;
@@ -84,6 +86,7 @@ types {
84
86
application/x-shockwave-flash swf;
85
87
application/x-stuffit sit;
86
88
application/x-tcl tcl tk;
89
+ application/x-typescript ts tsx;
87
90
application/x-x509-ca-cert der pem crt;
88
91
application/x-bittorrent torrent;
89
92
application/zip zip;
@@ -99,10 +102,13 @@ types {
99
102
text/html html htm shtml;
100
103
text/mathml mml;
101
104
text/plain txt;
105
+ text/x-typescript ts tsx;
102
106
text/vnd.sun.j2me.app-descriptor jad;
103
107
text/vnd.wap.wml wml;
104
108
text/vtt vtt;
105
109
text/x-component htc;
110
+ text/x-sass sass;
111
+ text/x-scss scss;
106
112
text/x-vcard vcf;
107
113
108
114
}
Original file line number Diff line number Diff line change @@ -108,15 +108,24 @@ http {
108
108
application/rss+xml
109
109
application/vnd.ms-fontobject
110
110
application/x-font-ttf
111
+ application/x-javascript
112
+ application/x-typescript
111
113
application/x-web-app-manifest+json
112
114
application/xhtml+xml
113
115
application/xml
114
116
font/opentype
115
117
image/svg+xml
116
118
image/x-icon
117
119
text/css
120
+ text/less
118
121
text/plain
119
- text/x-component;
122
+ text/json
123
+ text/x-sass
124
+ text/x-scss
125
+ text/x-javascript
126
+ text/x-typescript
127
+ text/x-component
128
+ text/xml;
120
129
# text/html is always compressed by HttpGzipModule
121
130
122
131
You can’t perform that action at this time.
0 commit comments