1
0

」 feat: Changed folder structure to comply with the dumb subject

This commit is contained in:
2025-01-12 15:17:52 +01:00
parent 45ef1f3ddf
commit 9f8cf6b3ea
17 changed files with 40 additions and 37 deletions

View File

@ -0,0 +1,14 @@
[mariadb]
host-cache-size=0
skip-name-resolve
port=3306
expire_logs_days=10
!includedir /etc/mysql/conf.d
[mysqld]
port=3306
socket=/run/mysqld/mysqld.sock
bind-address=0.0.0.0

View File

@ -0,0 +1,14 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
}
location /health {
access_log off;
return 200 'healthy';
add_header Content-Type text/plain;
}
}