Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/lib/letsencrypt/backups/1742811592.520118/ |
Upload File : |
# Nonsecure server for reading personal channels. Use secure server instead. server { # nginx-push-stream-module server for push & pull listen 8893; server_name _; # Include error handlers include bx/conf/errors.conf; # Include im subscrider handlers #include bx/conf/im_subscrider.conf; location / { deny all; } } # SSL enabled server for reading personal channels server { listen 8894 ssl; server_name _; include bx/conf/ssl-push.conf; # Include error handlers include bx/conf/errors.conf; # Include im subscrider handlers #include bx/conf/im_subscrider.conf; location / { deny all; } } # Server to push messages to user channels server { listen 127.0.0.1:8895; server_name _; location ^~ /bitrix/pub/ { #push_stream_publisher admin; #push_stream_channels_path $arg_CHANNEL_ID; #push_stream_store_messages on; allow 127.0.0.0/8; deny all; } location / { deny all; } # Include error handlers include bx/conf/errors.conf; }