2017 © Pedro Peláez
 

library altax-server

Running php built-in web server via altax.

image

kohkimakimoto/altax-server

Running php built-in web server via altax.

  • Monday, March 3, 2014
  • by kohkimakimoto
  • Repository
  • 1 Watchers
  • 2 Stars
  • 35 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

Altax server plugin

Build Status, (*1)

Running php built-in web server via altax., (*2)

Installation

Edit your .altax/composer.json file like the following, (*3)

{
  "require": {
    "kohkimakimoto/altax-server": "dev-master"
  }
}

Run altax update, (*4)

$ altax update

Add the following line your .altax/config.php file., (*5)

Task::register('server', 'Altax\Contrib\Server\Command\ServerCommand');

Usage

Run the task command, (*6)

$ altax server [-H|--host[="..."]] [-p|--port[="..."]] [-t|--docroot[="..."]] [script]

Configuration

Example:, (*7)

Task::register('server', 'Altax\Contrib\Server\Command\ServerCommand')
->config(array(
    "host" => "localhost",
    "port" => 1234,
    "docroot" => "/path/to/document/root",
    "script" => "/path/to/router/script.php",
    ));

host

The host address of the server., (*8)

port

The port of the server., (*9)

docroot

The document root of the server., (*10)

script

Router script of the server., (*11)

See also

The Versions

03/03 2014

dev-master

9999999-dev https://github.com/kohkimakimoto/altax-server

Running php built-in web server via altax.

  Sources   Download

Apache License 2.0

The Requires

  • php >=5.4.0

 

The Development Requires

plugin altax

11/02 2014

v0.2.1

0.2.1.0 https://github.com/kohkimakimoto/altax-server

Running php built-in web server via altax.

  Sources   Download

Apache License 2.0

The Requires

  • php >=5.4.0

 

The Development Requires

plugin altax

10/02 2014

v0.2.0

0.2.0.0 https://github.com/kohkimakimoto/altax-server

Running php built-in web server via altax.

  Sources   Download

Apache License 2.0

The Requires

  • php >=5.4.0

 

The Development Requires

plugin altax

07/02 2014

v0.1.0

0.1.0.0 https://github.com/kohkimakimoto/altax-server

A built-in web server plugin for altax.

  Sources   Download

Apache License 2.0

The Requires

  • php >=5.4.0

 

The Development Requires

plugin altax