server {
server_name test.ru www.test.ru;
ssl_certificate "/var/www/httpd-cert/www-root/test.ru_le1.crtca";
ssl_certificate_key "/var/www/httpd-cert/www-root/test,ru_le1.key";
ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
add_header Strict-Transport-Security "max-age=31536000;";
ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
charset off;
index index.php index.html;
disable_symlinks if_not_owner from=$root_path;
include /etc/nginx/vhosts-includes/*.conf;
include /etc/nginx/vhosts-resources/test.ru/*.conf;
access_log /var/www/httpd-logs/test.ru.access.log;
error_log /var/www/httpd-logs/test.ru.error.log notice;
ssi on;
set $root_path /var/www/www-root/data/www/test.ru/public;
root $root_path;
listen [2a01:4f8:c0c:3130::1]:443 ssl;
listen 78.46.193.61:443 ssl;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
if (!-d $request_filename) {
rewrite ^/(.+)/$ /$1 permanent;
}
location ~* \.php$ {
fastcgi_pass unix:/var/www/php-fpm/www-root.sock;
fastcgi_index index.php;
fastcgi_split_path_info ^(.+\.php)(.*)$;
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
location ~* \.io {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-NginX-Proxy false;
proxy_pass http://айпи:2053;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
вот второй вариант я и делал, но возник конфликт с блоками, ибо в этих блоках используются сокеты, но это уже другая каша)
А универсального варианта нет, например чтоб сделать пустой блок с пустым ксс, и сделать чтоб нужны мне блок появлялся после пустого?