Softaculous https://www.softaculous.com/board/index.php? <![CDATA[nginx brotli and http3/quic (and maybe in openresty)]]> https://www.softaculous.com/board/index.php?tid=21911&tpg=1#p61863
Quote From : myipgr January 22, 2026, 2:10 am
Any chances to compile nginx with
brotli support and http3/quic and maybe configurable cache options?
Using from source with success:
Code

  --with-pcre-jit \
  --with-threads \
  --with-file-aio \
  --with-http_ssl_module \
  --with-http_v2_module \
  --with-http_v3_module \
  --with-http_realip_module \
  --with-http_stub_status_module \
  --with-stream \
  --with-stream_ssl_module \
  --with-stream_realip_module \
  --with-stream_ssl_preread_module \
  --with-http_gzip_static_module \
  --add-module="${SRC_DIR}/ngx_brotli" \
  --with-openssl="${SRC_DIR}/openssl-${OPENSSL_VER}" \
  --with-openssl-opt="enable-quic no-shared no-tests" \
  --with-cc-opt="-I${SRC_DIR}/ngx_brotli/deps/brotli/c/include -Wno-error=sign-compare -Wno-sign-compare"


And in templates something like:
Code
    # Global HTTP/3 Settings (defaults)
    http3 on;
    quic_gso on;
    quic_retry on;

    # Gzip & Brotli
    gzip_vary on;
    gzip on;
    gzip_static on;
    brotli on;
    brotli_comp_level 6;
    brotli_static on;
    brotli_types text/plain text/css application/javascript application/json image/svg+xml;


open_file_cache          max=1000 inactive=10m;
open_file_cache_valid    60s;
open_file_cache_min_uses 1;
open_file_cache_errors  on;




server {
    listen 443 quic reuseport;
    server_name _;

    ssl_certificate    xxx
    ssl_certificate_key xxx

    ssl_protocols TLSv1.3;
    http3 on;

    return 444;
}


    # Cache keys
    proxy_cache_key  "$scheme$request_method$host$request_uri";
    fastcgi_cache_key "$scheme$request_method$host$request_uri";


    proxy_cache_path xxx
        levels=1:2 keys_zone=proxy_micro:20m max_size=512m inactive=60m use_temp_path=off;

    proxy_cache_path xxx
        levels=1:2 keys_zone=proxy_static:50m max_size=5g inactive=30d use_temp_path=off;

    fastcgi_cache_path xxx
        levels=1:2 keys_zone=php_cache:50m inactive=60m max_size=5g;


}


and vhost triggers:

Code

server {
    listen 443 ssl;
    # Advertise HTTP/3 to clients that connect over TCP first
    add_header Alt-Svc 'h3=":443"; ma=86400' always;

    http2 on;


# HTTPS (UDP 443 - HTTP/3)
server {
    listen 443 quic;
    http3 on;


Then we could enable it / disable it from API / UI
]]>
Fri, 23 Jan 2026 21:57:25 GMT https://www.softaculous.com/board/index.php?tid=21911&tpg=1#p61863
<![CDATA[Issues with some Apache Modules]]> https://www.softaculous.com/board/index.php?tid=21907&tpg=1#p61862
Sir Please open support ticket at https://softaculous.deskuss.com. so we can check the issue from our end

Regards.]]>
Fri, 23 Jan 2026 11:18:37 GMT https://www.softaculous.com/board/index.php?tid=21907&tpg=1#p61862
<![CDATA[Call Center Dana Digital]]> https://www.softaculous.com/board/index.php?tid=21908&tpg=1#p61861 Fri, 23 Jan 2026 09:29:00 GMT https://www.softaculous.com/board/index.php?tid=21908&tpg=1#p61861 <![CDATA[I need to forcefully kill the task running in virtulizor panel]]> https://www.softaculous.com/board/index.php?tid=20495&tpg=1#p61860 Fri, 23 Jan 2026 03:28:00 GMT https://www.softaculous.com/board/index.php?tid=20495&tpg=1#p61860 <![CDATA[Webuzo Integration with Cloudflare]]> https://www.softaculous.com/board/index.php?tid=5014&tpg=2#p61859 And something that fixes SSL certificate with CF Origin certificate.
I bet I'm not the only one always spending 15 minutes before realizing what's the proper way to set everything every single time I need to add a domain

I also guess you would have less tickets reporting problems about people not knowing they need to toggle off the Proxy for have emails working on the free plan...]]>
Thu, 22 Jan 2026 19:31:24 GMT https://www.softaculous.com/board/index.php?tid=5014&tpg=2#p61859
<![CDATA[Download the free version for PC with Windows and Xampp]]> https://www.softaculous.com/board/index.php?tid=19520&tpg=1#p61858
Quote From : Brijesh June 4, 2024, 12:26 pm
Hi,

Please use the following link with https which works :
https://files.softaculous.com/amp/current.php

We have also updated the docs with the updated https URL.

You can also try AMPPS which works on Windows as well as Mac :
https://www.ampps.com/downloads/ basketball stars 2026

With easy to install and update latest versions of PHP, Apache, MySQL & MongoDB.

Thanks for the update! The HTTPS link works perfectly now, and it’s great to see the documentation has been updated as well. AMPPS is also a solid option—very convenient for managing PHP, Apache, MySQL, and MongoDB on both Windows and Mac. Appreciate the helpful info.]]>
Thu, 22 Jan 2026 07:15:26 GMT https://www.softaculous.com/board/index.php?tid=19520&tpg=1#p61858
<![CDATA[Is it possible to import designs from Figma?]]> https://www.softaculous.com/board/index.php?tid=20457&tpg=1#p61857 Thu, 22 Jan 2026 03:23:22 GMT https://www.softaculous.com/board/index.php?tid=20457&tpg=1#p61857 <![CDATA[nginx brotli and http3/quic]]> https://www.softaculous.com/board/index.php?tid=21910&tpg=1#p61856 Using from source with success:
Code

  --with-pcre-jit \
  --with-threads \
  --with-file-aio \
  --with-http_ssl_module \
  --with-http_v2_module \
  --with-http_v3_module \
  --with-http_realip_module \
  --with-http_stub_status_module \
  --with-stream \
  --with-stream_ssl_module \
  --with-stream_realip_module \
  --with-stream_ssl_preread_module \
  --with-http_gzip_static_module \
  --add-module="${SRC_DIR}/ngx_brotli" \
  --with-openssl="${SRC_DIR}/openssl-${OPENSSL_VER}" \
  --with-openssl-opt="enable-quic no-shared no-tests" \
  --with-cc-opt="-I${SRC_DIR}/ngx_brotli/deps/brotli/c/include -Wno-error=sign-compare -Wno-sign-compare"


And in templates something like:
Code
    # Global HTTP/3 Settings (defaults)
    http3 on;
    quic_gso on;
    quic_retry on;

    # Gzip & Brotli
    gzip_vary on;
    gzip on;
    gzip_static on;
    brotli on;
    brotli_comp_level 6;
    brotli_static on;
    brotli_types text/plain text/css application/javascript application/json image/svg+xml;


open_file_cache          max=1000 inactive=10m;
open_file_cache_valid    60s;
open_file_cache_min_uses 1;
open_file_cache_errors  on;




server {
    listen 443 quic reuseport;
    server_name _;

    ssl_certificate    xxx
    ssl_certificate_key xxx

    ssl_protocols TLSv1.3;
    http3 on;

    return 444;
}


    # Cache keys
    proxy_cache_key  "$scheme$request_method$host$request_uri";
    fastcgi_cache_key "$scheme$request_method$host$request_uri";


    proxy_cache_path xxx
        levels=1:2 keys_zone=proxy_micro:20m max_size=512m inactive=60m use_temp_path=off;

    proxy_cache_path xxx
        levels=1:2 keys_zone=proxy_static:50m max_size=5g inactive=30d use_temp_path=off;

    fastcgi_cache_path xxx
        levels=1:2 keys_zone=php_cache:50m inactive=60m max_size=5g;


}


and vhost triggers:

Code

server {
    listen 443 ssl;
    # Advertise HTTP/3 to clients that connect over TCP first
    add_header Alt-Svc 'h3=":443"; ma=86400' always;

    http2 on;


# HTTPS (UDP 443 - HTTP/3)
server {
    listen 443 quic;
    http3 on;


Then we could enable it / disable it from API / UI ]]>
Thu, 22 Jan 2026 02:10:46 GMT https://www.softaculous.com/board/index.php?tid=21910&tpg=1#p61856
<![CDATA[how to create sync or server cluster]]> https://www.softaculous.com/board/index.php?tid=19485&tpg=1#p61855 ]]> Wed, 21 Jan 2026 05:28:42 GMT https://www.softaculous.com/board/index.php?tid=19485&tpg=1#p61855 <![CDATA[Unable to install, report an error.]]> https://www.softaculous.com/board/index.php?tid=20474&tpg=1#p61854
]]>
Wed, 21 Jan 2026 03:27:14 GMT https://www.softaculous.com/board/index.php?tid=20474&tpg=1#p61854