- PHP 7.4 support - Improved Webp images support with Cloudflare (Issue [#95](https://github.com/WordOps/WordOps/issues/95)). Nginx will not serve webp images alternative with Cloudflare IP ranges. - Stack upgrade for adminer - Check acme.sh installation and setup acme.sh if needed before issuing certificate - Add `--ufw` to `wo stack status` - Add Nginx directive `gzip_static on;` to serve precompressed assets with Cache-Enabler or WP-Rocket. (Issue [#207](https://github.com/WordOps/WordOps/issues/207)) - Previous `--php73` & `--php73=off` flags are replaced by `--php72`, `--php73`, `--php74` to switch site's php version - phpMyAdmin updated to v4.9.2 - Adminer updated to v4.7.5 - Replace dot and dashes by underscores in database names (Issue [#206](https://github.com/WordOps/WordOps/issues/206)) - Increased database name length to 32 characters from domain name + 8 random characters - typo error in motd-news script (Issue [#204](https://github.com/WordOps/WordOps/issues/204)) - Install Nginx before ngxblocker - WordOps install/update script text color - Issue with MySQL stack on Raspbian 9/10 - Typo error (PR [#205](https://github.com/WordOps/WordOps/pull/205)) - php version in `wo debug` (PR [#209](https://github.com/WordOps/WordOps/pull/209)) - SSL certificates expiration display with shared wildcard certificates
70 lines
1.6 KiB
Plaintext
70 lines
1.6 KiB
Plaintext
# WordOps admin NGINX CONFIGURATION - WordOps {{release}}
|
|
|
|
server {
|
|
|
|
listen 22222 default_server ssl http2;
|
|
|
|
access_log /var/log/nginx/22222.access.log rt_cache;
|
|
error_log /var/log/nginx/22222.error.log;
|
|
|
|
# Force HTTP to HTTPS
|
|
error_page 497 =200 https://$host:22222$request_uri;
|
|
|
|
root {{webroot}}22222/htdocs;
|
|
index index.php index.htm index.html;
|
|
|
|
# Turn on directory listing
|
|
autoindex on;
|
|
|
|
# HTTP Authentication on port 22222
|
|
include common/acl.conf;
|
|
|
|
# nginx-vts-status
|
|
location /vts_status {
|
|
vhost_traffic_status_display;
|
|
vhost_traffic_status_display_format html;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php$is_args$args;
|
|
}
|
|
|
|
# Display menu at location /fpm/status/
|
|
location = /fpm/status/ {}
|
|
|
|
location ~ /fpm/status/(.*) {
|
|
try_files $uri =404;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_NAME /status;
|
|
fastcgi_pass $1;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
try_files $uri =404;
|
|
include fastcgi_params;
|
|
fastcgi_pass php72;
|
|
}
|
|
|
|
location /netdata {
|
|
return 301 /netdata/;
|
|
}
|
|
|
|
location ~ /netdata/(?<ndpath>.*) {
|
|
proxy_redirect off;
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Forwarded-Host $host;
|
|
proxy_set_header X-Forwarded-Server $host;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_http_version 1.1;
|
|
proxy_pass_request_headers on;
|
|
proxy_set_header Connection "keep-alive";
|
|
proxy_store off;
|
|
proxy_pass http://netdata/$ndpath$is_args$args;
|
|
|
|
}
|
|
|
|
include {{webroot}}22222/conf/nginx/*.conf;
|
|
|
|
}
|