Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 37 additions & 37 deletions .rr.yaml
Original file line number Diff line number Diff line change
@@ -1,48 +1,48 @@
version: "3"
rpc:
listen: "tcp://127.0.0.1:6001"
listen: "tcp://127.0.0.1:6001"
server:
command: "php web/index.php"
relay: pipes
env:
YII_C3: true
YII_DEBUG: true
YII_ENV: dev
command: "php web/index.php"
relay: pipes
env:
YII_C3: true
YII_DEBUG: true
YII_ENV: dev
http:
address: :8080
address: :8080

ssl:
address: :8443
cert: "web/ssl/localhost.pem"
key: "web/ssl/localhost-key.pem"
redirect: true
ssl:
address: :8443
cert: "web/ssl/localhost.pem"
key: "web/ssl/localhost-key.pem"
redirect: true

headers:
response:
"Cache-Control": "no-cache"
headers:
response:
"Cache-Control": "no-cache"

middleware:
- static # serve files first
- gzip # compress dynamic output
middleware:
- static # serve files first
- gzip # compress dynamic output

static:
dir: web
forbid:
- .php
- .htaccess
pool:
num_workers: 1
supervisor:
max_worker_memory: 100
static:
dir: web
forbid:
- .php
- .htaccess
pool:
num_workers: 1
supervisor:
max_worker_memory: 100
jobs:
pool:
num_workers: 2
max_worker_memory: 100
consume: {}
pool:
num_workers: 2
max_worker_memory: 100
consume: {}
kv:
local:
driver: memory
config:
interval: 60
local:
driver: memory
config:
interval: 60
metrics:
address: "127.0.0.1:2112"
address: "127.0.0.1:2112"
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Bug #204: Add YAML front matter to configuration files for consistency (@terabytesoftw)
- Bug #210: Update `.editorconfig` and `.gitignore` for improved consistency and clarity (@terabytesoftw)
- Bug #211: Standardize indentation in `.rr.yaml` for improved readability (@terabytesoftw)

## 0.1.2 October 8, 2025

Expand Down
Loading