We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0a1374 commit df7362dCopy full SHA for df7362d
README.md
@@ -80,7 +80,7 @@ location / {
80
```
81
With:
82
83
-# ✅ Try Node.js first, fallback to static files, then PHP
+# Try Node.js first, fallback to static files, then PHP
84
location / {
85
# Try serving from Node.js first
86
proxy_pass http://127.0.0.1:3001;
@@ -92,7 +92,7 @@ location / {
92
error_page 502 504 = @fallback;
93
}
94
95
-# ✅ Fallback to Static Files or PHP if Node.js Fails
+# Fallback to Static Files or PHP if Node.js Fails
96
location @fallback {
97
try_files $uri $uri/ /index.php$is_args$args;
98
0 commit comments