Skip to content
Snippets Groups Projects

Devel

Merged Henry Fröcklin requested to merge devel into production
5 files
+ 33
48
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 0
14
server_tokens off;
access_log /var/log/nginx/vlc.access.log;
error_log /var/log/nginx/vlc.error.log;
# This configuration will be changed to redirect to HTTPS later
server {
server_name vlc.itn.liu.se;
listen 8080;
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
}
}
Loading