{"id":41957189,"url":"https://github.com/bohdaq/rust-tls-server","last_synced_at":"2026-01-25T22:44:58.714Z","repository":{"id":63260583,"uuid":"565182445","full_name":"bohdaq/rust-tls-server","owner":"bohdaq","description":"Web server for handling HTTPS using TLS","archived":false,"fork":false,"pushed_at":"2023-09-03T12:07:19.000Z","size":192,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-08T18:25:13.959Z","etag":null,"topics":["https","rust","server"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bohdaq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-11-12T15:44:07.000Z","updated_at":"2022-12-29T17:26:52.000Z","dependencies_parsed_at":"2025-04-13T13:09:40.637Z","dependency_job_id":"4fe0ca06-1f6b-4ceb-9945-4c11541658f5","html_url":"https://github.com/bohdaq/rust-tls-server","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/bohdaq/rust-tls-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohdaq%2Frust-tls-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohdaq%2Frust-tls-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohdaq%2Frust-tls-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohdaq%2Frust-tls-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bohdaq","download_url":"https://codeload.github.com/bohdaq/rust-tls-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bohdaq%2Frust-tls-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28760774,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-25T20:56:06.009Z","status":"ssl_error","status_checked_at":"2026-01-25T20:54:48.203Z","response_time":113,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["https","rust","server"],"created_at":"2026-01-25T22:44:57.871Z","updated_at":"2026-01-25T22:44:58.706Z","avatar_url":"https://github.com/bohdaq.png","language":"Rust","funding_links":["https://www.paypal.com/donate/?hosted_button_id=7J69SYZWSP6HJ"],"categories":[],"sub_categories":[],"readme":"# rust-tls-server\n\n**rust-tls-server** is a web server capable of serving static content over https.\n\n\n## Features\n1. HTTPS via [Mozilla Intermediate TLS](https://wiki.mozilla.org/Security/Server_Side_TLS)\n1. [Self-signed certificate](https://en.wikipedia.org/wiki/Self-signed_certificate) out of the box\n1. [Strict Transport Security](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security)\n1. [Content Security Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy) is set to serve \nassets only from https sources. Inline javascript is forbidden\n1. [Referer Policy](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy) is set\n1. [Cross-Origin Resource Sharing (CORS)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS). Allowing resources to be used on other domains can be crucial for providing APIs and services. Knowing how cumberstone and difficult is the process to setup the CORS, server ships with CORS enabled to all requests by default.\n1. [HTTP Range Requests](https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests). Server supports requests for the part of the file, or several different parts of the file.\n1. [HTTP Client Hints](https://developer.mozilla.org/en-US/docs/Web/HTTP/Client_hints). Proactively asking client browser for suitable additional information about the system.\n1. [X-Content-Type-Options](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options) set to nosniff, prevents from MIME type sniffing attacks.\n1. [X-Frame-Options](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options). Site is not allowed to be embedded into iframe on other domains.\n1. [Symlinks](https://en.wikipedia.org/wiki/Symbolic_link). You can have symlinks in your folder and they will be resolved correctly.\n1. [Caching](https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching#dealing_with_outdated_implementations) done right. It means no caching and therefore no outdated uncontrollable resources.\n1. Resolving .html files without .html in path. It means if you try to open /some-html-file it will open file some-html-file.html and won't show 404 not found error. Same applies for folders. If you try to open /folder it will open file folder/index.html\n1. Extensive logging. It means server prints the request-response pairs as they are so you can see all the details like request method, path, version and headers.\n1. No third party dependencies.\n\n## Download\nDownload binary from [Google Drive](https://drive.google.com/drive/folders/1m0GyfvSaKROutjWeVLg23VBCbqZn7OkW?usp=sharing).\n\n## Installation\nOpen [INSTALL](INSTALL.md) for details.\n\n## Development\nOpen [DEVELOPER](DEVELOPER.md) for details.\n\n## Configuration\nOpen [CONFIGURE](CONFIGURE.md) for details.\n\n## Frequently Asked Questions\nOpen [FAQ](FAQ.md) for details.\n\n## Community\nUse GitHub discussions, issues and pull requests.\n\nThere is Rust Web Server [Discord](https://discord.gg/zaErjtr5Dm) where you can ask questions and share ideas. \n\nFollow the [Rust code of conduct](https://www.rust-lang.org/policies/code-of-conduct).\n\n## Donations\nIf you appreciate my work and want to support it, feel free to do it via [PayPal](https://www.paypal.com/donate/?hosted_button_id=7J69SYZWSP6HJ).\n\n## Links\n1. [Rust Web Server](https://github.com/bohdaq/rust-web-server)\n1. [http-to-https-letsencrypt](https://github.com/bohdaq/http-to-https-letsencrypt)\n1. [Rust Web Framework](https://github.com/bohdaq/rust-web-framework/)\n1. [Create Debian Package](https://github.com/bohdaq/rws-create-deb)\n1. [Create RPM Package](https://github.com/bohdaq/rws-rpm-builder)\n1. [Homebrew Formula](https://github.com/bohdaq/homebrew-rust-tls-server)\n1. [crypto-ext](https://github.com/bohdaq/crypto-ext/)\n1. [file-ext](https://github.com/bohdaq/file-ext/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbohdaq%2Frust-tls-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbohdaq%2Frust-tls-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbohdaq%2Frust-tls-server/lists"}