Changeset 14572
- Timestamp:
- 01/09/09 11:09:43 (4 years ago)
- Files:
-
- plugins/sfWebServerPlugin/README (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfWebServerPlugin/README
r13612 r14572 1 = sfWebServerPlugin = 1 sfWebServerPlugin 2 ================= 2 3 3 4 The `sfWebServerPlugin` packages a mini web server to run symfony locally … … 6 7 config or loss much time with apache or other full web server 7 8 8 == Installation == 9 Installation 10 ------------ 9 11 10 * Install the plugin12 * Install the plugin 11 13 12 {{{ 13 symfony plugin:install symfony/sfWebServerPlugin 14 }}} 14 symfony plugin:install symfony/sfWebServerPlugin 15 15 16 16 * Clear the cache 17 * Clear the cache 18 19 symfony cache:clear 20 17 21 18 {{{ 19 symfony cache:clear 20 }}} 21 22 == Documentation == 22 Documentation 23 ------------- 23 24 24 25 All classes have full API and usage documentation. The API documentation is available here. 25 26 26 == Start Server == 27 Start Server 28 ------------ 27 29 28 30 Start symfony webserver on port 4000 29 31 30 {{{ 31 symfony project:server 32 }}} 32 symfony project:server 33 33 34 34 35 or specify your prefered port 35 36 36 {{{ 37 symfony project:server -p 800038 }}} 37 38 symfony project:server -p 8000 39 39 40 40 41 for security reasons, you canno't open server in port 80, if you pretend to spread 41 42 your work to internet, you must install a production web server(apache, lighttpd, ...) 43