Compare commits
2 Commits
d6f1cae7b7
...
f097a491ae
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f097a491ae | ||
|
|
e90e1911e8 |
@@ -48,3 +48,6 @@ if ("serviceWorker" in navigator)
|
||||
} catch (e) {
|
||||
console.error(e)
|
||||
}
|
||||
|
||||
const config = await fetch('config.json').then((re) => re.json())
|
||||
config.title && (document.title = config.title)
|
||||
|
||||
@@ -181,6 +181,7 @@ export default function Message({ userId, rawData, renderHTML, message, openUser
|
||||
id="msg"
|
||||
style={{
|
||||
fontSize: "94%",
|
||||
wordBreak: 'break-word',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
}}
|
||||
|
||||
@@ -17,9 +17,10 @@ let config = {
|
||||
*/
|
||||
listen: {
|
||||
port: 3601,
|
||||
host: "::",
|
||||
host: null,
|
||||
/**
|
||||
* setting ipv6Only to true will disable dual-stack support, i.e., binding to host :: won't make 0.0.0.0 be bound.
|
||||
* 然而这在 deno 上没什么用, 不如设定 host 为 null
|
||||
*/
|
||||
ipv6Only: false,
|
||||
},
|
||||
@@ -31,6 +32,9 @@ let config = {
|
||||
cert: default_data_path + '/cert.pem',
|
||||
},
|
||||
},
|
||||
client: {
|
||||
title: '铃之椅',
|
||||
},
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
@@ -21,6 +21,9 @@ import FileUploadMiddleware from "./fileupload-middleware.ts"
|
||||
const app = express()
|
||||
app.use('/', express.static(config.data_path + '/page_compiled'))
|
||||
app.use(cookieParser())
|
||||
app.get('/config.json', (req, res) => {
|
||||
res.send(config.client || {})
|
||||
})
|
||||
app.get('/uploaded_files/:hash', FileUploadMiddleware.checkAccessingUploadedFiles, (req, res) => {
|
||||
const file = FileManager.findByHash(req.params.hash as string)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user