{"id":30113638,"url":"https://github.com/andriykalashnykov/tomcat-mac","last_synced_at":"2026-06-15T20:31:48.202Z","repository":{"id":308045311,"uuid":"256814856","full_name":"AndriyKalashnykov/tomcat-mac","owner":"AndriyKalashnykov","description":"Apache Tomcat on MacOS","archived":false,"fork":false,"pushed_at":"2025-07-30T17:07:58.000Z","size":15,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T17:11:56.307Z","etag":null,"topics":["macos","tomcat"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AndriyKalashnykov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-04-18T17:38:01.000Z","updated_at":"2025-07-30T17:08:38.000Z","dependencies_parsed_at":"2025-08-03T21:00:36.747Z","dependency_job_id":null,"html_url":"https://github.com/AndriyKalashnykov/tomcat-mac","commit_stats":null,"previous_names":["andriykalashnykov/tomcat-mac"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AndriyKalashnykov/tomcat-mac","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Ftomcat-mac","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Ftomcat-mac/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Ftomcat-mac/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Ftomcat-mac/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AndriyKalashnykov","download_url":"https://codeload.github.com/AndriyKalashnykov/tomcat-mac/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AndriyKalashnykov%2Ftomcat-mac/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34379915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-15T02:00:07.085Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["macos","tomcat"],"created_at":"2025-08-10T07:26:22.530Z","updated_at":"2026-06-15T20:31:48.184Z","avatar_url":"https://github.com/AndriyKalashnykov.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tomcat-mac\n\n## APR + SSL\n\nvi $CATLINA_HOME/conf/server.xml\n\n```xml\n    \u003cConnector port=\"8080\" protocol=\"HTTP/1.1\" connectionTimeout=\"20000\" redirectPort=\"8443\" /\u003e\n          \u003cUpgradeProtocol className=\"org.apache.coyote.http2.Http2Protocol\"  connectionTimeout=\"-1\" maxConnections=\"-1\" maxConcurrentStreamExecution=\"1000\" maxConcurrentStreams=\"1000\" maxTrailerCount=\"-1\" maxTrailerSize=\"-1\" writeTimeout=\"-1\" allowedTrailerHeaders=\"true\"  compression=\"on\" compressibleMimeType=\"text/html,text/xml,text/plain,text/css,text/javascript,application/javascript,application/json,application/xml\" executorTerminationTimeoutMillis=\"600000\"/\u003e\n        \u003cSSLHostConfig protocols=\"TLSv1.3,TLSv1.2\"\u003e\n            \u003cCertificate certificateKeyFile=\"conf/localhost.key\" certificateFile=\"conf/localhost.crt\" type=\"RSA\" /\u003e\n        \u003c/SSLHostConfig\u003e\n     \u003c/Connector\u003e\n```\n\nvi $TOMCAT_HOME/conf/tomcat-users.xml\n\n```xml\n\u003cuser username=\"admin\" password=\"admin\" roles=\"manager-gui,admin-gui,admin-script,manager-script,manager-jmx,manager-status\"/\u003e\u003c/tomcat-users\u003e\n```\n\n```shell\n$TOMCAT_HOME/bin/startup.sh\nopen http://localhost:8080/manager/html/list\n```\n\n```shell\ncat $TOMCAT_HOME/logs/catalina.out\n```\n\n```log\n...\nINFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].\nINFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].\nINFO [main] org.apache.catalina.core.AprLifecycleListener.lifecycleEvent APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]\nINFO [main] org.apache.catalina.core.AprLifecycleListener.initializeSSL OpenSSL successfully initialized [OpenSSL 1.1.1f  31 Mar 2020]\n...\n```\n\n```shell\n$TOMCAT_HOME/bin/shutdown.sh\n```\n\n## Links\n\n[AprLifecycleListener]\n\n[AprLifecycleListener]: https://tomcat.apache.org/tomcat-9.0-doc/config/listeners.html#APR_Lifecycle_Listener_-_org.apache.catalina.core.AprLifecycleListener\n\n[Link]: https://github.com/kubernetes/examples/tree/master/staging/javaweb-tomcat-sidecar\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriykalashnykov%2Ftomcat-mac","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandriykalashnykov%2Ftomcat-mac","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriykalashnykov%2Ftomcat-mac/lists"}