* use dockerhost in xdebug3 config for php8 in workspace * set local docker resolver for nginx * refactored base configs (join in one base config) and better separate examples for third party services * set default web port for inbucket to 82 instead of 9090, because last use for cockpit
65 lines
1.5 KiB
Plaintext
65 lines
1.5 KiB
Plaintext
#upstream php73 {
|
|
# server php73:9000;
|
|
#}
|
|
|
|
upstream php74 {
|
|
server php74:9000;
|
|
}
|
|
|
|
upstream php81 {
|
|
server php81:9000;
|
|
}
|
|
|
|
map $http_host $root {
|
|
octobercms.local.wpstudio.ru /usr/share/nginx/html/someproject;
|
|
wordpress.local.wpstudio.ru /usr/share/nginx/html/someprojectwp;
|
|
}
|
|
|
|
# @see https://github.com/OFFLINE-GmbH/oc-responsive-images-plugin/#responsive-images
|
|
map $http_accept $webp_suffix {
|
|
default "";
|
|
"~*webp" ".webp";
|
|
}
|
|
|
|
resolver 127.0.0.11;
|
|
|
|
map $http_host $uploads_upstream {
|
|
wordpress.local.wpstudio.ru "https://somewp.site";
|
|
}
|
|
|
|
server {
|
|
listen 80 default;
|
|
root $root;
|
|
#include global/auth.conf;
|
|
#@see https://vcs.wpstudio.ru/wpstudio/nginx-examples
|
|
include includes.d/octobercms.conf;
|
|
include includes.d/staticfiles.conf;
|
|
client_max_body_size 300M;
|
|
location ~ ^/index.php {
|
|
fastcgi_pass php81;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param SERVER_NAME $host;
|
|
}
|
|
}
|
|
|
|
|
|
server {
|
|
listen 80;
|
|
server_name
|
|
some-php74-site.local.wpstudio.ru
|
|
;
|
|
root $root;
|
|
#include global/auth.conf;
|
|
#@see https://vcs.wpstudio.ru/wpstudio/nginx-examples
|
|
include includes.d/octobercms.conf;
|
|
include includes.d/staticfiles.conf;
|
|
client_max_body_size 300M;
|
|
location ~ ^/index.php {
|
|
fastcgi_pass php74;
|
|
include fastcgi_params;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
fastcgi_param SERVER_NAME $host;
|
|
}
|
|
}
|