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.
Digitalisation_EPA_Client/nginx.conf

22 lines
399 B

3 years ago
worker_processes auto;
3 years ago
events { worker_connections 1024; }
http {
server {
listen 4200;
server_name digitepa_front;
#ssl_certificate /etc/nginx/ssl/www.epa.apside.com.crt;
#ssl_certificate_key /etc/nginx/ssl/www.epa.apside.com.key;
location / {
root /usr/share/nginx/html/EPAClient;
try_files $uri $uri/ admin/index.html;
}
}
}