This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -----BEGIN RSA PRIVATE KEY----- | |
| MIIG5AIBAAKCAYEAn6uhAAzVPFQ6hdsw9ljljCLE6M9x7rAWBu8I/G0qaXipTwtT | |
| LYoPsjZEWvV7ilwRMn/wlYrOJbvcH34VodCf2vXAV2IQvbyT03k0v6J48/nhV2Rx | |
| 8Xmf2OunkBNI1RWVLdmICzkYK0hUu3QWiwWL2DgtG7y/CUsaHIIL35yIr8QzOgSY | |
| 97jB+Df8cXJU9crtCosnSYThHDjYd4JgtbA/lmE/j7dsFVrnnFr4NhZhBTrEagcF | |
| FXjQU4v1rciMzrI5FoD0ySGvkMTLU4WD6jeaZXcAjsoKh2RGdwOIDkwJZMqdy3JM | |
| a7kNBC1z43HbjnAnatGMz8uaukqqZ+uepLlVGkNDtqRQFCWUrkBrL63lSOfZ/4Dl | |
| DpMV85Oek3krtIQRvkOgDEeZwVqFDDfzUnx9BWTfXvnZ9UZIdeeacP1KFwiQrGI0 | |
| pDEFKaTgXlhbCvwFyZcpRZ+8LtBh87jez33zL+fgF/YZnTPeOfgtkdJQniY+xfoa | |
| jX1E8vq32q8317rvAgMBAAECggGAX34K1PfX07PgKEv2FW8HIe9tansefYzsL4to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| date.timezone = Africa/Abidjan | |
| display_errors = False | |
| error_log = | |
| error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT | |
| expose_php = False | |
| log_errors = True | |
| max_input_time = 60 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class IPA { | |
| private $server; | |
| private $sslverify; | |
| private $session; | |
| private $login_user; | |
| public function __construct($server, $sslverify = false) { | |
| $this->server = $server; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const express = require('express'); | |
| const redis = require("redis"); | |
| const swaggerSpec = require('./src/middlewares/swagger'); | |
| const swaggerUi = require("swagger-ui-express"); | |
| const { jwtapikeyVerify } = require('./src/middlewares/auth'); | |
| const logger = require('./src/middlewares/logger'); | |
| const factureRoutes = require('./src/routes/ro-facture'); | |
| const detailFactureRoutes = require('./src/routes/ro-detail-facture'); | |
| const taxeDetailFactureRoutes = require('./src/routes/ro-taxe-detail-facture'); |
OlderNewer