mirror of
https://gitee.com/orangeform/orange-admin.git
synced 2026-01-17 18:46:36 +08:00
commit:权限模块新增分配详情功能
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
ARG ES_VER
|
||||
|
||||
FROM elasticsearch:${ES_VER}
|
||||
|
||||
# 设置时区为上海
|
||||
ENV TZ=Asia/Shanghai
|
||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
||||
@@ -0,0 +1,15 @@
|
||||
# 设置支持Elasticsearch-Head
|
||||
http.cors.enabled: true
|
||||
http.cors.allow-origin: "*"
|
||||
|
||||
# 设置集群Master配置信息
|
||||
cluster.name: "docker-cluster-master"
|
||||
# 设置网络,如果是本机的话就是127.0.0.1,其他服务器配置对应的IP地址即可(0.0.0.0支持外网访问)
|
||||
network.host: 0.0.0.0
|
||||
|
||||
# 密码验证
|
||||
# xpack.security.enabled: true
|
||||
# xpack.security.transport.ssl.enabled: true
|
||||
|
||||
# 单节点模式
|
||||
discovery.type: single-node
|
||||
@@ -0,0 +1,3 @@
|
||||
ARG KIBANA_VER
|
||||
|
||||
FROM kibana:${KIBANA_VER}
|
||||
@@ -0,0 +1,13 @@
|
||||
#
|
||||
# ** THIS IS AN AUTO-GENERATED FILE **
|
||||
#
|
||||
|
||||
# Default Kibana configuration for docker target
|
||||
server.name: kibana
|
||||
server.host: "0"
|
||||
elasticsearch.hosts: [ "http://elasticsearch:9200" ]
|
||||
# elasticsearch.username: ""
|
||||
# elasticsearch.password: ""
|
||||
|
||||
# 汉化
|
||||
i18n.locale: "zh-CN"
|
||||
@@ -0,0 +1,3 @@
|
||||
ARG LOGSTASH_VER
|
||||
|
||||
FROM logstash:${LOGSTASH_VER}
|
||||
@@ -0,0 +1,2 @@
|
||||
http.host: "0.0.0.0"
|
||||
xpack.monitoring.elasticsearch.hosts: [ "http://elasticsearch:9200" ]
|
||||
@@ -0,0 +1,6 @@
|
||||
# This file is where you define your pipelines. You can define multiple.
|
||||
# For more information on multiple pipelines, see the documentation:
|
||||
# https://www.elastic.co/guide/en/logstash/current/multiple-pipelines.html
|
||||
|
||||
- pipeline.id: main
|
||||
path.config: "/usr/share/logstash/pipeline"
|
||||
@@ -0,0 +1,15 @@
|
||||
input {
|
||||
kafka {
|
||||
bootstrap_servers => "kafka:9093"
|
||||
topics => "zz-log-topic"
|
||||
codec => plain
|
||||
}
|
||||
}
|
||||
|
||||
# 监听
|
||||
output {
|
||||
elasticsearch {
|
||||
hosts => ["http://elasticsearch:9200"]
|
||||
index => "logstash-%{+YYYY-MM}"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user