TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How do I set up a HIPAA-compliant server?

68 点作者 th3o6a1d超过 10 年前

23 条评论

USNetizen超过 10 年前
It&#x27;s not just the server - it&#x27;s the storage, accessibility (compartmentalization), and transmission of sensitive data (PHI and PII) at all levels. There is a lot more to HIPAA&#x2F;HITECH than just server configuration - there are legal agreements you have to enter into as well (BAA&#x27;s), insurance requirements, and potentially a lot more.<p>I&#x27;d suggest you work with a company that has a lot of experience in this area before you inadvertently find yourself fined (or sued) into bankruptcy.
评论 #8347666 未加载
评论 #8347604 未加载
wyc超过 10 年前
There are a few options if you want HIPAA compliance. Note that &quot;HIPAA compliance&quot; is somewhat of a loaded term in that there aren&#x27;t many super-technical benchmarks to meet, but a general &quot;do-good&quot; attitude including (but not limited to) some of the following points:<p>- Physical server isolation: you cannot have other instances sniffing around in your deallocated garbage memory.<p>- Encrypted data stores: physical theft of the server should not provide access to your data.<p>- Server providers who can sign a Business Associate Agreement: many hospitals and firms with medical data require this in their stipulations.<p>- Audit trails for database modifications, access, etc. Basically, log everything, and this has to be encrypted too if it contains protected health information (PHI).<p>- All PHI over HTTPS if you have a webapp. NO PHI OVER EMAIL OR HTTP.<p>- &quot;Soft&quot; guidelines such as password complexity measures, auto session expiration, disallowed multi-sessions.<p>Again, this is not an exhaustive list. You really need to check with a lawyer who knows this stuff. The fines are enormous (read: business-ending) if you break the rules.<p>How do you work to implement these? Well, find a host who is willing to sign a BAA. Here are the two major contenders I&#x27;m aware of:<p>- Use Amazon AWS; they&#x27;re willing to sign a BAA with you and provide you the physical server isolation you need. However, this doesn&#x27;t come cheap. Expect &gt;$2,000&#x2F;mo in costs to keep this configuration. Also, you&#x27;d better be a network pro or willing to learn how to manage VPCs correctly to provide proper network-level isolation for the databases.<p>- Use aptible.com (they happen to be a YC company, and I don&#x27;t know of anyone else doing this). Frank &amp; Chas (the founders) are very responsive and aim to provide a comprehensive package, including backups, audit trails, and even employee training. The Docker-based and heroku-like interface is very appealing:<p><a href="https://support.aptible.com/hc/en-us/articles/202638630-Deploying-your-first-app" rel="nofollow">https:&#x2F;&#x2F;support.aptible.com&#x2F;hc&#x2F;en-us&#x2F;articles&#x2F;202638630-Depl...</a><p>This option is still expensive. They host on AWS as well, so you&#x27;re paying for the server costs + premium. However, this will still be a lot cheaper than hiring a competent sysadmin to make sure the execution is flawless.
评论 #8348074 未加载
sebst超过 10 年前
It&#x27;s a big task on its own and it seems a bit in-transparent to me.<p>However, you may want to have a look at TrueVault[0] which has been featured on HN[1].<p>[0]: <a href="https://www.truevault.com/" rel="nofollow">https:&#x2F;&#x2F;www.truevault.com&#x2F;</a><p>[1]: <a href="https://news.ycombinator.com/item?id=7033188" rel="nofollow">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=7033188</a>
michaelmachine超过 10 年前
As some people have mentioned here, there are other issues to think of besides the IT aspect. There is employee training, risk assessment, policy development, and the business account agreements. Accountable is a company that focuses on these type of issues to make them easier by providing things like employee training, ready to use policies and procedures, and business association agreements. I found them while learning about HIPPA compliance, and I have not actually tried the product but it looks like it could be useful for you, so I thought I would mention it here. <a href="http://accountablehq.com/index.html" rel="nofollow">http:&#x2F;&#x2F;accountablehq.com&#x2F;index.html</a>
th3o6a1d超过 10 年前
Surprised no one has posted this. From the folks at TrueVault. <a href="https://github.com/truevault/hipaa-compliance-developers-guide" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;truevault&#x2F;hipaa-compliance-developers-gui...</a>
th3o6a1d超过 10 年前
@USNetizen -- You&#x27;re right...I should have clarified that I want to know how to get an entire stack up and running, although I don&#x27;t trust myself to do this unassisted.<p>I&#x27;m just surprised at how few resources there are that explain what it takes, and I hope that someday soon, healthcare startup CTO&#x27;s will be referred to clearly documented open source solutions that are fairly fool-proof, rather than paid-for services (@sebst). Amazon&#x27;s compliance page is unfortunately uninformative (@byoung2).
评论 #8347708 未加载
评论 #8347581 未加载
voska超过 10 年前
If you want a HIPAA-compliant server setup for you: <a href="https://www.aptible.com/" rel="nofollow">https:&#x2F;&#x2F;www.aptible.com&#x2F;</a> (S14)
chasb超过 10 年前
(Disclosure: I&#x27;m a co-founder of Aptible.)<p>As noted in other comments, most of HIPAA is not technical. Most of the requirements relate to risk assessment, policies, training, incident response, etc.<p>With that in mind, I&#x27;m going to quickly run down all of the major moving parts and then cover some of the technical considerations for setting up a server.<p>HIPAA has three main rules you need to comply with:<p>1. The Privacy Rule - Governs the use and disclosure of PHI (protected health information). Applies to all forms of PHI (verbal, written, electronic, etc.).<p>2. The Security Rule - Governs safeguards for electronic PHI<p>3. The Breach Notification Rule - Governs your responsibilities during a security or privacy incident<p><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><p>The Security Rule has a general security standard, some documentation&#x2F;retention rules, and three sections of safeguards. They are:<p>1. Administrative Safeguards<p>2. Physical Safeguards<p>3. Technical Safeguards<p>Some of the safeguards are mandatory. Some are &quot;addressable,&quot; meaning if you don&#x27;t implement them you must document why you chose not to and what other safeguards you applied instead.<p><i></i><i></i><i></i><i></i><i></i><i></i><i></i><i></i><p>Most likely, you&#x27;re going to start with something like the following for your servers:<p>1. Sign a BAA with any service provider who is going to touch PHI for you.<p>2. Restrict physical and logical server access to authorized individuals. Document how you restrict access and why the methods chosen are reasonable and appropriate given the risk posture of your organization. (There&#x27;s a LOT packed into this step.)<p>3. Log all access and data modification events. If you use a logging service that isn&#x27;t HIPAA-compliant, make sure you&#x27;re not including PHI data you send them.<p>4. Encrypt data at rest and in transit, including inside the network perimeter. Document your network topology and access points.<p>5. Implement backups according to your organization&#x27;s HIPAA contingency&#x2F;disaster recovery plan. Document the backup scheme.<p>A few caveats:<p>- I haven&#x27;t addressed application-level security. The same requirements apply, but the implementation differs.<p>- Your customers will demand additional safeguards that aren&#x27;t in HIPAA.<p>At Aptible, we help with all of this, plus all of the other requirements (risk assessment, policies, training, etc.), so you can get a complete handle on your compliance status.
评论 #8347886 未加载
评论 #8350458 未加载
评论 #8350508 未加载
评论 #8350576 未加载
评论 #8348349 未加载
评论 #8347849 未加载
评论 #8347888 未加载
th3o6a1d超过 10 年前
Thanks for all of your comments so far. Synopsis is...it&#x27;s complicated. There are basically no straightforward guides and no reliable, tried-and-true open source solutions that can be deployed with minimal security expertise, at least with respect to the technical setup.<p>Options are to go with a service company like Aptible or TrueVault, or fumble through vast amounts of obtuse technical and legal documentation, then hire a security expert to audit your homemade system and hope that everything goes OK. Both options, as they currently exist, require a fair amount of $$$.
评论 #8348046 未加载
jeffasinger超过 10 年前
I&#x27;d just have someone else do it for me. There are many &quot;enterprise&quot; level hosting companies that can help you with that.<p>I believe that rackspace has a pretty program around compliance.
HIPAATraining超过 10 年前
Hi,<p>training-hipaa.net provides Server Disaster Recovery Plan Template which is the part of HIPAA Compliance.<p>This Server Recovery Plan documents the strategies, personnel, procedures and resources necessary to recover the server following any type of short or long term disruption. You can find more information about this over here <a href="http://www.training-hipaa.net/template_suite/Server_recovery_plan_template.htm" rel="nofollow">http:&#x2F;&#x2F;www.training-hipaa.net&#x2F;template_suite&#x2F;Server_recovery...</a>
ak217超过 10 年前
If you are trying to set up a service for processing or storing PHI, you may be interested in DNAnexus (<a href="https://dnanexus.com/" rel="nofollow">https:&#x2F;&#x2F;dnanexus.com&#x2F;</a>), which focuses on compliant high throughput data analysis and storage for genome information, but can be used to store other types of PHI data. (Full disclosure, I work at DNAnexus). Email in profile if you want to go into specifics.
评论 #8348462 未加载
pagade超过 10 年前
You may want to check out BladeLogic Server Automation: <a href="http://www.bmc.com/it-solutions/bladelogic-server-automation.html" rel="nofollow">http:&#x2F;&#x2F;www.bmc.com&#x2F;it-solutions&#x2F;bladelogic-server-automation...</a><p>Datasheet:<p><a href="http://documents.bmc.com/products/documents/27/36/242736/242736.pdf" rel="nofollow">http:&#x2F;&#x2F;documents.bmc.com&#x2F;products&#x2F;documents&#x2F;27&#x2F;36&#x2F;242736&#x2F;242...</a>
byoung2超过 10 年前
Here is some info about doing it on AWS<p><a href="http://aws.amazon.com/compliance/" rel="nofollow">http:&#x2F;&#x2F;aws.amazon.com&#x2F;compliance&#x2F;</a>
czczcz超过 10 年前
We have been very pleased with the True Vault solution and the responsiveness of the team when needed, worth looking into for your needs.
kevin_morrill超过 10 年前
One missing point in this thread: there is no such thing as HIPAA compliant. There is no government organization that will sanction your set up as &quot;compliant&quot;. The HIPAA legislation imposes fines if you leak data, but does not prescribe how you prevent that.<p>That said, the thread does have some great safe guards and industry best practices you should look at.
Gelob超过 10 年前
(Disclosure: I work at FireHost, not in sales!)<p>We sell cloud but focused on security, compliance, and performance. Check us out.<p><a href="http://www.firehost.com/secure-cloud/compliant/hipaa" rel="nofollow">http:&#x2F;&#x2F;www.firehost.com&#x2F;secure-cloud&#x2F;compliant&#x2F;hipaa</a>
th3o6a1d超过 10 年前
@voska &quot;Starting at $3499&#x2F;month with an annual contract&quot; -- Seems like security experience comes at a price... That said, it&#x27;s worth taking every precaution to protect patient data.
mp99e99超过 10 年前
We have audited HIPAA compliant hosting, at a reasonable price:<p><a href="https://www.atlantic.net/hipaa-compliant-hosting/" rel="nofollow">https:&#x2F;&#x2F;www.atlantic.net&#x2F;hipaa-compliant-hosting&#x2F;</a>
评论 #8350992 未加载
评论 #8347848 未加载
StephenGL超过 10 年前
We used to use a hosting company Layered Tech that had a HIPPA compliant offering. If you need HIPPA compoanxe I suggest getting it as a managed service.
snorkel超过 10 年前
If one big customer is demanding you be HIPAA compliant then they probably want to see a certification, and depending on size of customer they may be willing to provide funding for that certification. It takes months but the certifying service will provide consulting and training. Essentially it all about tight access controls, encrypting data at rest, and documenting everything and everyone who has access to the internals.
评论 #8347714 未加载
gomathinayagam超过 10 年前
Microsoft biztalk server has strong HIPAA connector&#x2F;accelerator, just have a look overthere.
philip1209超过 10 年前
It&#x27;s not an easy process .<p>Check out TrueVault - HIPAA-compliant data store that is a YC grad.