New features: - Automatic error reporting (enabled by default) - Increase build times by leveraging docker build caches - Fixes: - Fix error handling - Fix vue autodetect - Custom dockerfile is not the default Others: - Cleanup `logs-servers` collection, because old errors are not standardized - New Traefik proxy version - Standardized directory configurations
65 lines
1.9 KiB
JavaScript
65 lines
1.9 KiB
JavaScript
const fs = require('fs').promises
|
|
module.exports = async function (configuration) {
|
|
try {
|
|
// TODO: Write full .dockerignore for all deployments!!
|
|
if (configuration.build.pack === 'php') {
|
|
await fs.writeFile(`${configuration.general.workdir}/.htaccess`, `
|
|
RewriteEngine On
|
|
RewriteBase /
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.+)$ index.php [QSA,L]
|
|
`)
|
|
}
|
|
// await fs.writeFile(`${configuration.general.workdir}/.dockerignore`, 'node_modules')
|
|
if (configuration.build.pack === 'static') {
|
|
await fs.writeFile(
|
|
`${configuration.general.workdir}/nginx.conf`,
|
|
`user nginx;
|
|
worker_processes auto;
|
|
|
|
error_log /var/log/nginx/error.log warn;
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
|
|
access_log off;
|
|
sendfile on;
|
|
#tcp_nopush on;
|
|
keepalive_timeout 65;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name localhost;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/index.html $uri/ /index.html =404;
|
|
}
|
|
|
|
error_page 404 /50x.html;
|
|
|
|
# redirect server error pages to the static page /50x.html
|
|
#
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /usr/share/nginx/html;
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
`
|
|
)
|
|
}
|
|
} catch (error) {
|
|
throw new Error(error)
|
|
}
|
|
}
|