「🏗️」 wip: started secrets management
This commit is contained in:
@ -1,26 +0,0 @@
|
||||
server {
|
||||
listen 8443 ssl;
|
||||
|
||||
server_name _;
|
||||
|
||||
root /var/www/wordpress;
|
||||
index index.php;
|
||||
|
||||
ssl_certificate $NGINX_SSL_CERT_FILE;
|
||||
ssl_certificate_key $NGINX_SSL_KEY_FILE;
|
||||
ssl_protocols TLSv1.2 TLSv1.3;
|
||||
ssl_session_timeout 10m;
|
||||
|
||||
keepalive_timeout 60;
|
||||
|
||||
location / {
|
||||
try_files $${q}uri $${q}uri/ =404;
|
||||
}
|
||||
|
||||
location ~ \.php$ {
|
||||
fastcgi_pass $NGINX_PHP_HOST:9000;
|
||||
fastcgi_index index.php;
|
||||
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
||||
include fastcgi.conf;
|
||||
}
|
||||
}
|
@ -1,6 +1,15 @@
|
||||
#!/bin/sh
|
||||
|
||||
WP_DIR="/var/www/wordpress"
|
||||
#WP_VERSION="6.7.2"
|
||||
|
||||
#if [ -f "$WP_DIR/index.php" ]; then
|
||||
# echo "Already downloaded wordpress, skipping..."
|
||||
#else
|
||||
# echo "Downloading Wordpress ${WP_VERSION}"
|
||||
# wp --allow-root core download --version=${WP_VERSION} --path=${WP_DIR}
|
||||
#fi
|
||||
|
||||
|
||||
if [ -f "${WP_DIR}/wp-config.php" ]; then
|
||||
echo "Wordpress already configured, skipping installation"
|
||||
|
Reference in New Issue
Block a user