Skip to content

Instantly share code, notes, and snippets.

@sazid
Created November 30, 2020 21:25
Show Gist options
  • Save sazid/1b8989946369ec080be9fc31eaaf3a91 to your computer and use it in GitHub Desktop.
Save sazid/1b8989946369ec080be9fc31eaaf3a91 to your computer and use it in GitHub Desktop.
Redhat Enterprise Linux 8 nginx setup
  1. Create /etc/nginx/sites-available /etc/nginx/sites-enabled directories
  2. Add "include /etc/nginx/sites-enabled/*;" in http block
user ec2-user;  # SET THE PROPER USER HERE!
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic.
include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

http {
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    # access_log  /var/log/nginx/access.log  main;

    # sendfile            on;
    # tcp_nopush          on;
    # tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    # Load modular configuration files from the /etc/nginx/conf.d directory.
    # See http://nginx.org/en/docs/ngx_core_module.html#include
    # for more information.
    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}
  1. sudo chcon -Rt httpd_sys_content_t /home/ec2-user/static_folder/

  2. sudo setsebool -P httpd_can_network_connect_db

  3. sudo setsebool -P httpd_can_network_connect 1

  4. PID file not found error solution:

mkdir /etc/systemd/system/nginx.service.d
printf "[Service]\nExecStartPost=/bin/sleep 0.1\n" > /etc/systemd/system/nginx.service.d/override.conf
systemctl daemon-reload
systemctl restart nginx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment