Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get rid of no longer needed committed #146

Merged
merged 1 commit into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 0 additions & 38 deletions nginx/domains/broker.ffmuc.net.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ upstream wgkex_backend {
keepalive 32;
}

upstream wgkex_ffdon_backend {
server broker.ov.ffmuc.net:5001;
keepalive 32;
}

server {
listen 80;
listen [::]:80;
Expand Down Expand Up @@ -43,36 +38,3 @@ server {
access_log /var/log/nginx/{{ domain }}_access.log json_normal;
error_log /var/log/nginx/{{ domain }}_error.log;
}

server {
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name ffdon.broker.ffmuc.net;

root /srv/www/{{ domain }};

location /api {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Frame-Options SAMEORIGIN;

proxy_http_version 1.1;
proxy_pass http://wgkex_ffdon_backend;
}

location / {
if ($scheme = http) {
rewrite ^ https://$host$uri permanent;
}
}

ssl_certificate /etc/letsencrypt/live/ffmuc.net/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/ffmuc.net/privkey.pem;

access_log /var/log/nginx/{{ domain }}_access.log json_normal;
error_log /var/log/nginx/{{ domain }}_error.log;
}
21 changes: 0 additions & 21 deletions wgkex/wgkex-ffdon.service

This file was deleted.

25 changes: 0 additions & 25 deletions wgkex/wgkex-ffdon.yaml

This file was deleted.

Loading