aboutsummaryrefslogtreecommitdiff
path: root/juick-common
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-04-03 13:38:19 +0300
committerGravatar Vitaly Takmazov2018-04-03 13:38:19 +0300
commit4ed9ead1a2339a45a39aaf59f2270af5e2fece7f (patch)
tree02adebf261dee43d08bcee86d66d3382f1b96d07 /juick-common
parent2df2c62ff29a61ef6c03ce162f90eeafa2beb5e9 (diff)
drop outdated configuration examples
Diffstat (limited to 'juick-common')
-rw-r--r--juick-common/src/main/resources/juick.conf.example86
-rw-r--r--juick-common/src/main/resources/logback.xml.example35
2 files changed, 0 insertions, 121 deletions
diff --git a/juick-common/src/main/resources/juick.conf.example b/juick-common/src/main/resources/juick.conf.example
deleted file mode 100644
index f89ca82b..00000000
--- a/juick-common/src/main/resources/juick.conf.example
+++ /dev/null
@@ -1,86 +0,0 @@
-### Main database JDBC connection settings ###
-# Main database JDBC driver
-datasource_driver=net.sf.log4jdbc.DriverSpy
-!datasource_driver=com.mysql.jdbc.Driver
-
-# Main database JDBC Url
-!datasource_url=jdbc:mysql://localhost:3306/juick?autoReconnect=true&zeroDateTimeBehavior=convertToNull&characterEncoding=UTF8
-datasource_url=jdbc:log4jdbc:mysql://localhost:3306/juick?autoReconnect=true&zeroDateTimeBehavior=convertToNull&characterEncoding=UTF8
-
-# Main database username
-datasource_user=
-
-# Main database password
-datasource_password=
-
-### Sphinx search connection
-# Sphinx search JDBC driver
-sphinx_driver=com.mysql.jdbc.Driver
-
-# Sphinx search JDBC url
-sphinx_url=jdbc:mysql://127.0.0.1:9306?autoReconnect=true&useUnicode=yes&characterEncoding=utf8&maxAllowedPacket=512000
-
-# Sphinx search JDBC username
-sphinx_user=
-
-# Sphinx search JDBC password
-sphinx_password=
-
-# The domain name for Web (default value - "juick.com")
-web_domain=juick.com
-
-# Authority remember-me key
-auth_remember_me_key=3vHcy3OUDQlkpRDm
-
-
-### Template Settings (web page templates)
-# Show sponsors block
-template.showSponsors=false
-
-# Show Sape scripts
-template.showSape=true
-
-# Show Advertisement
-template.showAdv=true
-
-
-api_user=juick
-api_password=secret
-
-ios_pkcs12_file=
-ios_pkcs12_password=secret
-
-
-twitter_consumer_key=
-twitter_consumer_secret=
-
-crosspost_jid=
-ws_jid=
-push_jid=
-
-xmpp_host=
-xmpp_port=
-xmpp_password=
-
-push_xmpp_password=
-
-wns_application_sip=
-wns_client_secret=
-gcm_key=
-
-hostname=
-componentname=
-component_name=
-component_host=
-component_port=
-s2s_port=
-xmppbot_jid=juick@juick.com/Juick
-
-keystore=
-keystore_password=
-broken_ssl_hosts=
-banned_hosts=
-
-upload_tmp_dir=
-
-xmpp_disabled=false \ No newline at end of file
diff --git a/juick-common/src/main/resources/logback.xml.example b/juick-common/src/main/resources/logback.xml.example
deleted file mode 100644
index 05a3cfdf..00000000
--- a/juick-common/src/main/resources/logback.xml.example
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<configuration debug="true">
- <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
- <!-- encoders are assigned the type
- ch.qos.logback.classic.encoder.PatternLayoutEncoder by default -->
- <encoder>
- <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
- </encoder>
- </appender>
-
- <!-- log SQL (pre-execution) plus exceptions caused by SQL -->
- <!-- <logger name="jdbc.sqlonly" level="debug"/>-->
-
- <!-- log SQL with timing information, post execution -->
- <!-- <logger name="jdbc.sqltiming" level="debug"/> -->
-
- <!-- only use the two logs below to trace ALL JDBC information, NOTE: This can be very voluminous! -->
-
- <!-- log all jdbc calls except ResultSet calls -->
- <!-- <logger name="jdbc.audit" level="debug"/> -->
-
- <!-- log the jdbc ResultSet calls -->
- <!-- <logger name="jdbc.resultset" level="debug"/> -->
-
- <!-- log connection open/close events and dump of all open connection numbers -->
- <!-- <logger name="jdbc.connection" level="debug"/> -->
-
- <!-- this log is for internal debugging of log4jdbc, itself -->
- <!-- debug logging for log4jdbc itself -->
- <!-- <logger name="log4jdbc.debug" level="debug"/> -->
-
- <root level="info">
- <appender-ref ref="STDOUT" />
- </root>
-</configuration> \ No newline at end of file