You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
318 B
Nginx Configuration File
14 lines
318 B
Nginx Configuration File
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
root /home/ccvpn/public/;
|
|
server_name vpn.ccrypto.org;
|
|
set_real_ip_from 10.1.1.1;
|
|
|
|
try_files $uri @uwsgiapp;
|
|
location @uwsgiapp {
|
|
include uwsgi_params;
|
|
uwsgi_pass 'unix:///var/lib/uwsgi_ccvpn3.sock';
|
|
}
|
|
}
|