├── README.md ├── doc ├── README.rus.md ├── ServerExchange.log.txt ├── Sonoff-Server-GUI.PNG └── Sonoff-Server-GUI2.PNG ├── logs └── .gitignore ├── sonoffServer.config.json ├── sonoffServer.php ├── ssl ├── selfcert.in.crt ├── selfcert.in.csr ├── selfcert.in.key └── selfcert.in.pem └── template └── list.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/README.md -------------------------------------------------------------------------------- /doc/README.rus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/doc/README.rus.md -------------------------------------------------------------------------------- /doc/ServerExchange.log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/doc/ServerExchange.log.txt -------------------------------------------------------------------------------- /doc/Sonoff-Server-GUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/doc/Sonoff-Server-GUI.PNG -------------------------------------------------------------------------------- /doc/Sonoff-Server-GUI2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/doc/Sonoff-Server-GUI2.PNG -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sonoffServer.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/sonoffServer.config.json -------------------------------------------------------------------------------- /sonoffServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/sonoffServer.php -------------------------------------------------------------------------------- /ssl/selfcert.in.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/ssl/selfcert.in.crt -------------------------------------------------------------------------------- /ssl/selfcert.in.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/ssl/selfcert.in.csr -------------------------------------------------------------------------------- /ssl/selfcert.in.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/ssl/selfcert.in.key -------------------------------------------------------------------------------- /ssl/selfcert.in.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/ssl/selfcert.in.pem -------------------------------------------------------------------------------- /template/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vponomarev/Sonoff-Server/HEAD/template/list.html --------------------------------------------------------------------------------