summary refs log blame commit diff
path: root/nginx/conf/http.conf
blob: ad03bec1ba63bb7e1ae778f808fdefe0cc3fd7ce (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                      
                         







                                           
              
                   
                                    
                                                                                     





                            
 




                                                                   




                         




                                                   


                                             
                                    




                                                                  
# Default TLS redirect
server {
    listen       80;
    server_name  *.tazj.in tazj.in;
    return       301 https://$server_name$request_uri;
}

# Simple IP echo thing
server {
    listen 80;
    listen 443 ssl http2;
    server_name ip.tazj.in;
    access_log off;
    add_header "Content-Type" "text/plain";
    return 200 "$remote_addr\n";
}

# Redirect for oslo.pub
server {
    listen 80;
    listen 443 ssl;
    server_name oslo.pub *.oslo.pub;
    return 302 https://www.google.com/maps/d/viewer?mid=1pJIYY9cuEdt9DuMTbb4etBVq7hs;
}

# Gogs web interface
server {
    listen 443 ssl http2;
    server_name git.tazj.in;

    location / {
        proxy_pass http://gogs-priv.default.svc.cluster.local:3000;
    }
}

# tazj.in -> www.tazj.in
server {
    listen 443 ssl http2;
    server_name tazj.in;

    location / {
        return 301 https://www.tazj.in$request_uri;
    }
}

# TazBlog
server {
    listen      443 ssl http2 default_server;
    server_name www.tazj.in default;

    location / {
        proxy_pass http://tazblog-priv.default.svc.cluster.local/;
    }
}