ci: Frontend routing
This commit is contained in:
parent
edccf4ef62
commit
0053279dc3
11 changed files with 248 additions and 960 deletions
16
config/nginx/nginx.conf
Normal file
16
config/nginx/nginx.conf
Normal file
|
@ -0,0 +1,16 @@
|
|||
worker_processes auto;
|
||||
|
||||
events {
|
||||
worker_connections 1024;
|
||||
}
|
||||
|
||||
http {
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html;
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue