diff options
author | Valentin Popov <info@valentineus.link> | 2020-04-28 14:34:13 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-04-28 14:34:13 +0300 |
commit | 9d1d0ada3a3e73a4b08c62d7d06f587d0907b335 (patch) | |
tree | 014f7b1d93aba308db4d440ec0cec15b550a9768 /debian/personal-vps/nginx/conf.d/code.conf | |
parent | 69a48b5f9bc19ba9f523417c519b53373925e920 (diff) | |
download | dotfiles-9d1d0ada3a3e73a4b08c62d7d06f587d0907b335.tar.xz dotfiles-9d1d0ada3a3e73a4b08c62d7d06f587d0907b335.zip |
Initial NGINX2020-04-28
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'debian/personal-vps/nginx/conf.d/code.conf')
-rw-r--r-- | debian/personal-vps/nginx/conf.d/code.conf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/debian/personal-vps/nginx/conf.d/code.conf b/debian/personal-vps/nginx/conf.d/code.conf new file mode 100644 index 0000000..b0cf60d --- /dev/null +++ b/debian/personal-vps/nginx/conf.d/code.conf @@ -0,0 +1,27 @@ +map $http_upgrade $connection_upgrade { + default upgrade; + "" close; +} + +server { + charset utf-8; + listen 443 ssl http2; + listen [::]:443 ssl http2; + root /var/www/html; + server_name code.valentineus.link; + + access_log off; + error_log /var/log/nginx/code/error.log warn; + + location / { + proxy_http_version 1.1; + proxy_pass http://unix:/var/run/gitea/gitea.sock; + + proxy_set_header Connection $connection_upgrade; + proxy_set_header Host $host; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_set_header X-Real-IP $remote_addr; + } +}
\ No newline at end of file |