Configuring HTTPS and HTTP/2 Support in RoadRunner
Overview
RoadRunner provides built-in support for HTTPS and HTTP/2 protocols. This guide explains how to configure secure connections and leverage advanced HTTP features.
HTTPS Configuration
Enable HTTPS by adding the ssl section within the http configuration block:
http:
# Server binding address
address: 127.0.0.1:8080
ssl:
# HTTPS ...
Posted on Sun, 26 Jul 2026 16:38:45 +0000 by Magestic
PHP Workers in RoadRunner: Configuration and Usage Guide
PHP Workers
To execute your PHP application, you need to create a worker endpoint and configure RoadRunner to utilize it. First, install the required packages using Composer:
composer require spiral/roadrunner nyholm/psr7
The simplest entry point using the PSR-7 server API looks like this:
<?php
use Spiral\RoadRunner;
use Nyholm\Psr7;
in ...
Posted on Sat, 18 Jul 2026 16:24:08 +0000 by jronyagz