Spaces:
Runtime error
Runtime error
Update ferron-docker.yaml
Browse files- ferron-docker.yaml +11 -3
ferron-docker.yaml
CHANGED
|
@@ -1,4 +1,12 @@
|
|
|
|
|
| 1 |
global:
|
| 2 |
-
|
| 3 |
-
logFilePath: /var/log/ferron/access.log
|
| 4 |
-
errorLogFilePath: /var/log/ferron/error.log
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Global server configuration
|
| 2 |
global:
|
| 3 |
+
port: 8080 # Port 8080 သတ်မှတ်ပါ
|
| 4 |
+
logFilePath: /var/log/ferron/access.log # Absolute path
|
| 5 |
+
errorLogFilePath: /var/log/ferron/error.log # Absolute path
|
| 6 |
+
loadModules:
|
| 7 |
+
- cgi
|
| 8 |
+
wwwroot: /var/www/ferron # Absolute path
|
| 9 |
+
enableDirectoryListing: true
|
| 10 |
+
cgiScriptExtensions:
|
| 11 |
+
- .php # Necessary to be able to execute PHP scripts via PHP-CGI
|
| 12 |
+
|