Skip to content

Instantly share code, notes, and snippets.

View JonasGao's full-sized avatar
🙂
Cured ! Thanks God

Jonas Gao JonasGao

🙂
Cured ! Thanks God
  • Earth
  • Big Data
View GitHub Profile
@JonasGao
JonasGao / README.md
Last active April 3, 2020 15:20 — forked from chuyik/README.md
macOS 给 Git(Github) 设置代理(HTTP/SSH)
@JonasGao
JonasGao / init-html5.html
Created April 30, 2019 09:39 — forked from shabith/init-html5.html
HTML5: Starting Template
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title></title>
</head>
<body>
@JonasGao
JonasGao / proxy.minimal.conf
Last active January 25, 2023 22:22 — forked from sirsquidness/proxy.conf
How to have nginx proxy_pass follow upstream 302 redirects (Minimal, without Cache
server {
listen 80;
charset utf-8;
location / {
proxy_pass http://web;
proxy_intercept_errors on;
error_page 301 302 307 = @handle_redirects;
}