adding nginx config
This commit is contained in:
parent
f71f92a807
commit
a29b42237f
2 changed files with 42 additions and 1 deletions
38
app-nginx.conf.sigil
Normal file
38
app-nginx.conf.sigil
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
worker_processes 1;
|
||||||
|
error_log stderr;
|
||||||
|
pid nginx.pid;
|
||||||
|
daemon off;
|
||||||
|
|
||||||
|
events {
|
||||||
|
worker_connections 768;
|
||||||
|
}
|
||||||
|
|
||||||
|
http {
|
||||||
|
types_hash_max_size 2048;
|
||||||
|
include mime.types;
|
||||||
|
charset UTF-8;
|
||||||
|
server {
|
||||||
|
listen {{ $.PORT }};
|
||||||
|
server_name _;
|
||||||
|
{{ if ne $.NGINX_ROOT "" }}
|
||||||
|
root /app/www/{{ $.NGINX_ROOT }};
|
||||||
|
{{ else }}
|
||||||
|
root /app/www;
|
||||||
|
{{ end }}
|
||||||
|
index index.html;
|
||||||
|
port_in_redirect off;
|
||||||
|
|
||||||
|
location /now {
|
||||||
|
try_files /now.html =404;
|
||||||
|
}
|
||||||
|
|
||||||
|
location / {
|
||||||
|
{{ if ne $.NGINX_DEFAULT_REQUEST "" }}
|
||||||
|
try_files $uri $uri/ /{{ $.NGINX_DEFAULT_REQUEST }};
|
||||||
|
{{ else }}
|
||||||
|
try_files $uri $uri/ =404;
|
||||||
|
{{ end }}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
5
now.html
5
now.html
|
@ -16,8 +16,11 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>
|
<h1>
|
||||||
<a href="https://thermokar.st">now - thermokar.st</a>
|
<a href="https://thermokar.st">thermokar.st</a>
|
||||||
</h1>
|
</h1>
|
||||||
|
<h2>
|
||||||
|
now
|
||||||
|
</h2>
|
||||||
<p>
|
<p>
|
||||||
coming soon
|
coming soon
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Add table
Reference in a new issue