Added Mariadb and wordpress

This commit is contained in:
2022-08-02 06:41:22 +05:30
parent 5713d3d410
commit 4cfffeaebd
12 changed files with 505 additions and 0 deletions

View File

@ -0,0 +1,21 @@
server {
listen 80;
server_name {{ http_host }};
# Allow large attachments
client_max_body_size 128M;
location / {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Scheme $scheme;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Real-IP $remote_addr;
add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always;
proxy_pass http://localhost:{{ web_port }};
}
}