2019-09-02 19:19:35 +02:00
|
|
|
daemon off;
|
|
|
|
worker_processes 1;
|
|
|
|
error_log stderr;
|
2019-12-20 17:06:19 +01:00
|
|
|
pid /run/nginx.pid;
|
2019-09-02 19:19:35 +02:00
|
|
|
|
|
|
|
events {
|
|
|
|
worker_connections 1024;
|
|
|
|
}
|
|
|
|
|
|
|
|
http {
|
|
|
|
log_format json_combined escape=json
|
|
|
|
'{'
|
|
|
|
'"time_local":"$time_local",'
|
|
|
|
'"remote_addr":"$remote_addr",'
|
|
|
|
'"remote_user":"$remote_user",'
|
|
|
|
'"request":"$request",'
|
|
|
|
'"status": "$status",'
|
|
|
|
'"body_bytes_sent":"$body_bytes_sent",'
|
|
|
|
'"request_time":"$request_time",'
|
|
|
|
'"http_referrer":"$http_referer",'
|
|
|
|
'"http_user_agent":"$http_user_agent"'
|
|
|
|
'}';
|
|
|
|
|
|
|
|
access_log /dev/stdout json_combined;
|
|
|
|
|
|
|
|
sendfile on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
|
2019-09-02 21:16:49 +02:00
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
|
|
location / {
|
|
|
|
return 200 "ok";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-02 19:19:35 +02:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name oslo.pub;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
return 302 https://www.google.com/maps/d/viewer?mid=1pJIYY9cuEdt9DuMTbb4etBVq7hs;
|
|
|
|
}
|
|
|
|
}
|
2019-12-20 19:42:56 +01:00
|
|
|
|
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name git.tazj.in;
|
|
|
|
|
|
|
|
# Static assets must always hit the root.
|
|
|
|
location ~ ^/(favicon\.ico|cgit\.(css|png))$ {
|
|
|
|
proxy_pass http://cgit;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Everything else hits the depot directly.
|
|
|
|
location / {
|
|
|
|
proxy_pass http://cgit/cgit.cgi/depot/;
|
|
|
|
}
|
|
|
|
}
|
2019-09-02 19:19:35 +02:00
|
|
|
}
|