「✨」 feat: Changed folder structure to comply with the dumb subject
This commit is contained in:
14
srcs/configs/mariadb/docker.cnf
Normal file
14
srcs/configs/mariadb/docker.cnf
Normal 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
|
14
srcs/configs/nginx/wp.conf
Normal file
14
srcs/configs/nginx/wp.conf
Normal 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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user