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
| server { | |
| listen 80; | |
| server_name localhost; | |
| location /nginx_status { | |
| stub_status on; | |
| access_log off; | |
| server_tokens on; | |
| allow 127.0.0.1; | |
| allow ::1; |
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
| # Apache Tomcat logrotate | |
| /opt/apache-tomcat/logs/catalina.out | |
| /opt/apache-tomcat/logs/localhost_access_log.txt | |
| { | |
| copytruncate | |
| daily | |
| rotate 7 | |
| compress | |
| missingok |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <service> | |
| <short>Java Management Extensions</short> | |
| <description>This option allows you to access Java Management Extensions (JMX) listening port. | |
| You need the java package installed for this option to be useful.</description> | |
| <port protocol="tcp" port="8686"/> | |
| </service> |
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
| Private Sub Application_Itemsend(ByVal Item As Object, Cancel As Boolean) | |
| Dim strCC | |
| strCC = vbCrLf | |
| Dim objRec As Recipient | |
| For Each objRec In Item.Recipients | |
| strCC = strCC & objRec.Name & vbCrLf | |
| Next | |
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
| #!/bin/sh | |
| GIT_CONFIG='.git/config' | |
| OLD_REP=$1 | |
| NEW_REP=$2 | |
| WORKSPACE=$3 | |
| # show usage | |
| if [ -z "$OLD_REP" -o -z "$NEW_REP" ]; then |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <service> | |
| <short>Zabbix Java Gateway</short> | |
| <description>This option allows to access Zabbix Java Gateway listening port. | |
| You need the zabbix-java-gateway package installed for this option to be useful.</description> | |
| <port protocol="tcp" port="10052"/> | |
| </service> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <service> | |
| <short>Zabbix Server</short> | |
| <description>This option allows you to access Zabbix Server listening port. | |
| You need the zabbix-server package or zabbix-proxy package installed for this option to be useful.</description> | |
| <port protocol="tcp" port="10051"/> | |
| </service> |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <service> | |
| <short>Zabbix Agent</short> | |
| <description>This option allows you to access Zabbix Agent listening port. | |
| You need the zabbix-agent package installed for this option to be useful.</description> | |
| <port protocol="tcp" port="10050"/> | |
| </service> |