pheromone / nginx.conf
preyashyadav
Phase 9B: early-launch static Space stub (walkthrough)
8666d1c
Raw
History Blame Contribute Delete
153 Bytes
server {
listen 7860;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}