r3-config/3d-racing.conf

27 lines
734 B
Plaintext
Raw Normal View History

2016-11-08 12:34:17 +01:00
#origin https://github.com/ToywheelDev/3d-racing.git
2016-10-31 12:05:28 +01:00
server {
listen 80;
2016-11-08 12:34:17 +01:00
2016-10-31 12:05:28 +01:00
server_name 3d-racing.gamewheel.local 3d-racing-debug.gamewheel.local;
root /srv/gamewheel.local/3d-racing;
location / {
2016-11-08 12:34:17 +01:00
add_header Access-Control-Allow-Origin $http_origin;
2016-10-31 12:05:28 +01:00
autoindex on;
try_files $uri $uri/ @node;
}
location @node {
proxy_pass_request_headers on;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-NginX-Proxy true;
# Replace here with proper host/port
proxy_pass http://127.0.0.1:3102;
proxy_ssl_session_reuse off;
proxy_set_header Host $http_host;
proxy_redirect off;
}
}