backuppc_on_nginx
backuppc_on_nginx copied to clipboard
Nginx config to host BackupPC frontend
Here on nginx of debian buster I had to remove the `root` directive as nginx complained. The working setup to be included in a server directive is: ```nginx # BEGIN...
2017/09/27 23:56:04 [error] 5014#5014: *34 open() "/usr/share/backuppc/cgi-bin/backuppc/image/BackupPC_stnd.css" failed (2: No such file or directory), client: 2.93.191.179, server: _, request: "GET /backuppc/image/BackupPC_stnd.css HTTP/1.1", host: "138.68.101.254" Real path is /usr/share/backuppc/cgi-bin/image/BackupPC_stnd.css I think...
The `auth_basic` directive should be outside the location blocks, currently it only restricts access to `/image`.
Is there anything missing here. I am getting the following issues: 1) An error related to perl/cgi and nginx not knowing how to handle it. I have a php site...