Skip to content

Commit b895435

Browse files
committed
Add php-server.ini
1 parent cd66fd2 commit b895435

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

php-server.ini

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2+
; php-server configuration file - https://github.com/natanfelles/php-server ;
3+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4+
php = PHP_BINARY
5+
host = localhost
6+
port = 8080
7+
root = ./public
8+
autoindex = true
9+
index = index.html index.php
10+
error_reporting = E_ALL
11+
12+
[ini]
13+
display_errors = 1
14+
display_startup_errors = 1
15+
max_execution_time = 30
16+
post_max_size = 8M
17+
upload_max_filesize = 2M
18+
;opcache.preload = preload.php
19+
20+
xdebug.mode=develop
21+
xdebug.var_display_max_depth = 10
22+
xdebug.var_display_max_children = 256
23+
xdebug.var_display_max_data = 1024
24+
25+
[server]
26+
ENVIRONMENT = development

0 commit comments

Comments
 (0)