blob: a06d66553ef01038f2dc5ff84df946b65282fe80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
set export
CSS := "body {
color: green;
}"
test:
GEMINI_HOST=localhost CSS=$CSS php -S localhost:8080 -t test test/index.php
server:
php test/server.php
cert-server:
openssl req -x509 -newkey rsa:4096 -keyout test/key.rsa -out test/cert.pem -days 3650 -nodes -subj "/CN=localhost"
|