Switch to local static and have dev Caddyfile
This commit is contained in:
parent
f3d4e1ceaa
commit
a67701039d
3 changed files with 13 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
|||
/target
|
||||
|
||||
/static
|
10
Caddyfile
Normal file
10
Caddyfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
*:80 {
|
||||
route /static/* {
|
||||
uri strip_prefix /static
|
||||
file_server {
|
||||
root ./static
|
||||
}
|
||||
}
|
||||
|
||||
reverse_proxy 127.0.0.1:3621
|
||||
}
|
|
@ -6,7 +6,7 @@
|
|||
<title>Evie / eviee / uwueviee</title>
|
||||
<meta name="description" content="The site of Evie / eviee / uwueviee">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura-vader.css" type="text/css">
|
||||
<link rel="stylesheet" href="static/css/sakura-vader.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hewwo???</h1>
|
||||
|
|
Reference in a new issue