ycgambo / shadowrocket
A PHP shadowsocks component
Installs: 108
Dependents: 0
Suggesters: 0
Security: 0
Stars: 33
Watchers: 2
Forks: 9
Open Issues: 0
Type:socket
Requires
- php: >=5.3.0
- monolog/monolog: ^1.23
- phpseclib/phpseclib: ^2.0
- ulrichsg/getopt-php: ^3.1.1
- walkor/workerman: ^3.5.4
README
A socks5 proxy to build your own shadowsocks private network. PHP based & Composer supported.
Features
- TCP/UDP support
- IPV4/DOMAINNAME/IPV6 support
- Graceful restart
- Monolog Logger
- Guarder(Black List)
- Server Manager
Coming Next
- bandwidth throttling
- user management
Install
composer require ycgambo/shadowrocket
Requirements
- Composer
- PHP 5.3+
Usage
Run a server
<?php require_once __DIR__ . '/vendor/autoload.php'; $config = array( 'server' => array( 'port' => '8388', 'password' => 'mypass', 'encryption' => 'aes-256-cfb', 'process_num' => 12, ), ); ShadowRocket\Bin\Launcher::launch($config);
Run a local proxy
<?php require_once __DIR__ . '/vendor/autoload.php'; $config = array( 'local' => array( 'server' => '123.456.78.9', 'port' => '8388', 'password' => 'mypass', 'encryption' => 'aes-256-cfb', 'local_port' => '1086', 'process_num' => 12, ) ); ShadowRocket\Bin\Launcher::launch($config);
This means we want to pass data to local proxy 127.0.0.1:1086 which will request proxy server 123.456.78.9:8388 for reply.
Fire your script up
Assuming your script is named as start.php, in which contains code to launch the Launcher.
To run as daemon:
php start.php start -d
To stop your script:
php start.php stop
To graceful restart:
php start.php reload
To check status:
php start.php status
To check connections:
php start.php connections