mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-04 04:41:37 +00:00
17 lines
241 B
Nginx Configuration File
17 lines
241 B
Nginx Configuration File
error_log nginx-error.log;
|
|
pid nginx.pid;
|
|
|
|
events {}
|
|
|
|
http {
|
|
access_log nginx-access.log;
|
|
|
|
server {
|
|
listen 8002 default_server;
|
|
listen [::]:8002 default_server;
|
|
server_name _;
|
|
|
|
root http-root;
|
|
}
|
|
}
|