Update
This commit addresses the two currently outstanding issues and also introduces some changes: - The port has been changed from 3000 to 8080 - The format of the imprint.json file has changed. See the current example file.
This commit is contained in:
parent
15d4a60958
commit
7de67cbbd8
57 changed files with 3168 additions and 19341 deletions
30
nginx.conf
Normal file
30
nginx.conf
Normal file
|
@ -0,0 +1,30 @@
|
|||
worker_processes auto;
|
||||
pid /tmp/nginx.pid;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
include /etc/nginx/mime.types;
|
||||
default_type application/octet-stream;
|
||||
|
||||
log_format main '[$time_iso8601] $request_method $uri - $status';
|
||||
server_tokens off;
|
||||
|
||||
sendfile on;
|
||||
keepalive_timeout 65;
|
||||
|
||||
access_log /var/log/nginx/access.log main;
|
||||
error_log /dev/null;
|
||||
|
||||
server {
|
||||
server_name localhost;
|
||||
listen 8080;
|
||||
|
||||
location / {
|
||||
root /app;
|
||||
index index.html index.htm;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue