This file contains 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
swagger: "2.0" | |
info: | |
description: " | |
Via this API a merchant partnered with ESTO can create hire-purchase (loan) requests for their clients. | |
For available official ecommerce integrations, please refer to developer's guide (You need to be signed in as a merchant to view this page)." | |
version: "1.0.0" | |
title: "ESTO API" | |
contact: | |
email: "[email protected]" | |
license: |
This file contains 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
openapi: 3.0.0 | |
info: | |
title: Chat API Version 2 | |
description: Use this API for Web Chat (replacement for eServices WebAPI Chat) | |
version: 8.5.2 | |
tags: | |
- name: chat | |
description: Chat services | |
paths: | |
/{serviceName}: |
This file contains 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
swagger: '2.0' | |
info: | |
description: | | |
EveryPay API documentation. | |
# Test Cards | |
| Card type | Card number | Expiration date | CVC code | Cardholder name | | |
|------------|------------------|-----------------|----------|-----------------| | |
| Mastercard | 5204740000001002 | 12/25 | 100 | (any name) |
This file contains 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
server { | |
listen 80; | |
listen [::]:80; | |
server_name ${NGINX_SERVER_NAME}; | |
server_tokens off; | |
# Use 302 (moved temporarly) to reduce headaches | |
return 302 https://$server_name$request_uri; | |
} | |
server { | |
listen 443 ssl http2 default_server; |
This file contains 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
version: "2" | |
services: | |
prometheus: | |
image: prom/prometheus | |
container_name: prometheus | |
volumes: | |
- ./prometheus.yml:/etc/prometheus/prometheus.yml | |
ports: | |
- 9090:9090 | |
grafana: |
This file contains 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
version: "3" | |
services: | |
elasticsearch: | |
image: elasticsearch:7.16.3 | |
container_name: elasticsearch | |
restart: unless-stopped | |
environment: | |
- node.name=elasticsearch | |
- discovery.seed_hosts=elasticsearch | |
- cluster.initial_master_nodes=elasticsearch |