CLI and Publish Tests
This commit was merged in pull request #63.
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
events { }
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
types {
|
||||
application/wasm wasm;
|
||||
application/octet-stream dll blat dat webcil;
|
||||
application/gzip gz;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 8887;
|
||||
server_name localhost;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
gzip_static on;
|
||||
gzip_types application/wasm application/octet-stream application/json text/html text/css application/javascript;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user