Skip to content

Instantly share code, notes, and snippets.

@diegopacheco
diegopacheco / ice.md
Last active April 17, 2019 20:13
How to Install and Run Netflix/ICE on Amazon Linux OS
@alertor
alertor / jira-behing-nginx-ssl
Last active April 27, 2023 15:45
Atlassian JIRA behind nginx + SSL
# force HTTP to HTTPS - /etc/nginx/conf.d/nonssl.conf
server {
listen 80;
server_name jira.example.com;
access_log off;
return 301 https://$server_name$request_uri;
}
# /etc/nginx/conf.d/jira.conf
server {