aboutsummaryrefslogtreecommitdiff
path: root/srcs/wordpress/nginx.conf
blob: 2f915f43e834970474940219722e7ca959eb46ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
server {
    listen 5050;
    listen [::]:5050;

    server_name localhost;
    index index.php;
    root /var/www;

	location / {
		try_files $uri $uri/ =404;
	}

    location ~ \.php$ {
        include       fastcgi.conf;
        fastcgi_pass  localhost:9000;
        fastcgi_index index.php;
    }
}