You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-panel/etc/nginx/ngcp-panel

18 lines
408 B

server {
listen 1443;
ssl on;
ssl_certificate /etc/apache2/ssl/myserver.crt;
ssl_certificate_key /etc/apache2/ssl/myserver.pem;
location / {
include fastcgi_params;
# adjust parameters for PSGI compatibility
fastcgi_param SCRIPT_NAME '';
fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_pass unix:/run/fastcgi/ngcp-panel.sock;
}
location /static {
root /usr/share/ngcp-panel;
}
}