Page MenuHomeGRNET

ganetimgr.nginx.conf
No OneTemporary

File Metadata

Created
Thu, Dec 11, 12:01 AM

ganetimgr.nginx.conf

worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
server {
listen 80;
server_name _;
access_log /dev/stdout;
error_log /dev/stdout info;
location /static {
alias /srv/ganetimgr/static;
}
location / {
proxy_pass http://localhost:8000;
include proxy_params;
}
}
}

Event Timeline