Updates to build and pipelines
This commit is contained in:
20
nginx/default.conf
Normal file
20
nginx/default.conf
Normal file
@@ -0,0 +1,20 @@
|
||||
# Host-based routing: mifi.dev / www.mifi.dev → dev root, mifi.bio / www.mifi.bio → bio root
|
||||
server {
|
||||
listen 80 default_server;
|
||||
server_name mifi.dev www.mifi.dev;
|
||||
root /usr/share/nginx/html/dev;
|
||||
index index.html;
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
|
||||
server {
|
||||
listen 80;
|
||||
server_name mifi.bio www.mifi.bio;
|
||||
root /usr/share/nginx/html/bio;
|
||||
index index.html;
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user