Skip to content

What is computable must be immediate so we can spend more time with the incomputable.

Notifications You must be signed in to change notification settings

rmaicle/rmaicle.github.io

Repository files navigation

rmaicle.github.io

Blog and References

nginx

  1. Add this configuration file to the config folder /etc/nginx/conf.d.
server{

    listen 80;
    server_name [host];

    root /var/www/[host];
    index index.php index.html;

    # host error and access log
    access_log /var/log/nginx/[host].access.log;
    error_log /var/log/nginx/[host].error.log;

    location / {
    }

    # redirect server error pages to the static page /50x.html
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}
  1. Update permissions for the www-data group.

    sudo chown www-data:www-data /var/www/[host] -R

  2. Test config and reload Nginx service.

    sudo nginx -t && sudo service nginx reload

About

What is computable must be immediate so we can spend more time with the incomputable.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published