8e8f501279
* Use custom init script instead of postinstall * Revert changes to start scripts in src\electron * Add global data to content manager * Add migration for public overrides and user.css location update * Update npm publish workflow to use 'omit=dev' flag in npm ci commands * Rename user.css readme file * Fix indentation in userCssMiddleware function * Add directory creation for content target * Restore template compile location * Move stylesheet up in index.json * Use path.resolve for user.css file path in userCssMiddleware * Correct capitalization in "Not Found" error page title and heading * Remove init run from startup scripts * Simplify user CSS file path resolution * Update userCssMiddleware comment
22 lines
488 B
HTML
22 lines
488 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>Forbidden</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Forbidden</h1>
|
|
<p>
|
|
If you are the system administrator, add the hostname you are accessing from to the
|
|
host whitelist, or disable host whitelisting in the
|
|
<code>config.yaml</code> file located in the root directory of your installation.
|
|
</p>
|
|
<hr />
|
|
<p>
|
|
<em>Access from this host is not allowed. This attempt has been logged.</em>
|
|
</p>
|
|
</body>
|
|
|
|
</html>
|