Skip to content
Snippets Groups Projects
Commit c6101eef authored by Michael Loipführer's avatar Michael Loipführer
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
server {
listen 80;
server_name lustmolch.stusta.de;
charset utf-8;
location / {
rewrite ^(.*)$ /www/data/index.html;
}
}
server {
listen 80;
server_name pot.stusta.de;
charset utf-8;
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment