Skip to content

Instantly share code, notes, and snippets.

@x22element
Created June 5, 2019 13:52
Show Gist options
  • Save x22element/1b12f39f8278c07b6714dc3e9792a5e4 to your computer and use it in GitHub Desktop.
Save x22element/1b12f39f8278c07b6714dc3e9792a5e4 to your computer and use it in GitHub Desktop.
server {
listen 7777;
server_name localhost;
root C:\fastdl\;
location / {
deny all;
location ~* "\.(wad|bsp|spr|mdl|tga|wav)" {
allow all;
}
location ~ "/$" {
allow all;
autoindex on;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment