• Contact
  • Contact Us
  • Disclamer
  • Home 1
  • Home 2
  • Home 3
  • Privacy Policy
Friday, May 9, 2025
How VPS - How to use/setup VPS
  • Login
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon
No Result
View All Result
How VPS - How to use/setup VPS
No Result
View All Result
Home Operating System Fedora

How to Compile Nginx From Source on Fedora 25

How VPS by How VPS
December 1, 2019
in Fedora
0
0
SHARES
12
VIEWS
Share on FacebookShare on Twitter

Contents

  1. Using a Different System?
  2. Requirements for building NGINX from source
  3. Before you begin
  4. Build NGINX from source
  5. Conclusion
  6. Want to contribute?

Using a Different System?

  • How to Compile Nginx From Source on Ubuntu 16.04

  • How to Compile Nginx From Source on CentOS 7

  • How to Compile Nginx From Source on Debian 10

Are we missing a guide for your target system? Request one, or submit your own!


NGINX can be used as an HTTP/HTTPS server, reverse proxy server, mail proxy server, load balancer, TLS terminator, or caching server. It is quite modular by design. It has native modules and third-party modules created by the community. Written in the C programming language, it’s a very fast and lightweight piece of software.

NOTE: NGINX has two version streams that run in parallel – stable and mainline. Both versions can be used on a production server. It is recommended to use the mainline version in production.

Installing NGINX from source code is relatively “easy” – download the latest version of the NGINX source code, configure, build and install it.

In this tutorial I will use the mainline version, which is 1.13.3 at the time of writing. Update version numbers accordingly when newer versions become available.

Requirements for building NGINX from source

Mandatory requirements:

  • OpenSSL library version between 1.0.2 – 1.1.0
  • zlib library version between 1.1.3 – 1.2.11
  • PCRE library version between 4.4 – 8.41
  • GCC Compiler

Optional requirements:

  • PERL
  • libatomic_ops
  • LibGD
  • MaxMind GeoIP
  • libxml2
  • libxslt

Before you begin

  1. Create regular user with sudo access:

  2. Switch to the new user:

    su - <username>
    
  3. Update system:

    sudo dnf check-update || sudo dnf upgrade -y
    

Build NGINX from source

  1. Install “Development Tools”, Vim editor, wget, and gcc-c++:

    sudo dnf install -y @development-tools && sudo dnf install -y vim wget gcc-c++
    
  2. Download the latest mainline version of NGINX source code and untar it:

    wget https://nginx.org/download/nginx-1.13.3.tar.gz && tar zxvf nginx-1.13.3.tar.gz
    
  3. Download the NGINX dependencies’ source code and extract them:

    NGINX depends on 3 libraries: PCRE, zlib and OpenSSL:

    # PCRE version 8.41
    wget https://ftp.pcre.org/pub/pcre/pcre-8.41.tar.gz && tar xzvf pcre-8.41.tar.gz
    
    # zlib version 1.2.11
    wget https://www.zlib.net/zlib-1.2.11.tar.gz && tar xzvf zlib-1.2.11.tar.gz
    
    # OpenSSL version 1.1.0f
    wget https://www.openssl.org/source/openssl-1.1.0f.tar.gz && tar xzvf openssl-1.1.0f.tar.gz
    
  4. Download and install optional NGINX dependencies:

    # perl
    sudo dnf install -y perl perl-devel perl-ExtUtils-Embed
    
    # libxslt
    sudo dnf install -y libxslt libxslt-devel
    
    # libxml2
    sudo dnf install -y libxml2 libxml2-devel
    
    # libgd
    sudo dnf install -y gd gd-devel
    
    # GeoIP
    sudo dnf install -y GeoIP GeoIP-devel
    
    # Libatomic_Ops
    sudo dnf install -y libatomic_ops libatomic_ops-devel
    
  5. Remove all .tar.gz files. We don’t need them anymore:

    rm -rf *.tar.gz
    
  6. Go to the NGINX source directory:

    cd ~/nginx-1.13.3
    
  7. For good measure, list NGINX source code files and directories:

    ls
    # auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  man  README  src
    
  8. Copy NGINX manual page to /usr/share/man/man8/:

    sudo cp ~/nginx-1.13.3/man/nginx.8 /usr/share/man/man8/
    sudo gzip /usr/share/man/man8/nginx.8
    # Check that Man page for NGINX is working
    man nginx
    
  9. For help, you can list available configuration switches by running:

    ./configure --help
    # To see want core modules can be build as dynamic run:
    ./configure --help | grep -F =dynamic
    
  10. Configure, compile, and install NGINX:

    ./configure --prefix=/etc/nginx /
                --sbin-path=/usr/sbin/nginx /
                --modules-path=/usr/lib64/nginx/modules /
                --conf-path=/etc/nginx/nginx.conf /
                --error-log-path=/var/log/nginx/error.log /
                --pid-path=/var/run/nginx.pid /
                --lock-path=/var/run/nginx.lock /
                --user=nginx /
                --group=nginx /
                --build=Fedora /
                --builddir=nginx-1.13.3 /
                --with-select_module /
                --with-poll_module /
                --with-threads /
                --with-file-aio /
                --with-http_ssl_module /
                --with-http_v2_module /
                --with-http_realip_module /
                --with-http_addition_module /
                --with-http_xslt_module=dynamic /
                --with-http_image_filter_module=dynamic /
                --with-http_geoip_module=dynamic /
                --with-http_sub_module /
                --with-http_dav_module /
                --with-http_flv_module /
                --with-http_mp4_module /
                --with-http_gunzip_module /
                --with-http_gzip_static_module /
                --with-http_auth_request_module /
                --with-http_random_index_module /
                --with-http_secure_link_module /
                --with-http_degradation_module /
                --with-http_slice_module /
                --with-http_stub_status_module /
                --with-http_perl_module=dynamic /
                --with-perl=/usr/bin/perl /
                --http-log-path=/var/log/nginx/access.log /
                --http-client-body-temp-path=/var/cache/nginx/client_temp /
                --http-proxy-temp-path=/var/cache/nginx/proxy_temp /
                --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp /
                --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp /
                --http-scgi-temp-path=/var/cache/nginx/scgi_temp /
                --with-mail=dynamic /
                --with-mail_ssl_module /
                --with-stream=dynamic /
                --with-stream_ssl_module /
                --with-stream_realip_module /
                --with-stream_geoip_module=dynamic /
                --with-stream_ssl_preread_module /
                --with-compat /
                --with-pcre=../pcre-8.41 /
                --with-pcre-jit /
                --with-zlib=../zlib-1.2.11 /
                --with-openssl=../openssl-1.1.0f /
                --with-openssl-opt=no-nextprotoneg /
                --with-debug
    
    make
    sudo make install
    
  11. Print the NGINX version, compiler version, and configure script parameters:

    nginx -V
    
    # nginx version: nginx/1.13.3 (Fedora)
    # built by gcc 6.3.1 20161221 (Red Hat 6.3.1-1) (GCC)
    # built with OpenSSL 1.1.0f  25 May 2017
    # TLS SNI support enabled
    # configure arguments: --prefix=/etc/nginx . . .
    # . . .
    
  12. Create the NGINX system user and group:

    sudo useradd --system --home /var/cache/nginx --shell /sbin/nologin --comment "nginx user" --user-group nginx
    
  13. Check syntax and potential errors:

    sudo nginx -t
    # Will throw this error: nginx: [emerg] mkdir() "/var/cache/nginx/client_temp" failed (2: No such file or directory)
    # Just create directory
    sudo mkdir -p /var/cache/nginx/ && sudo nginx -t
    
  14. Create a systemd unit file for NGINX:

    sudo vim /etc/systemd/system/nginx.service
    
  15. Copy/paste the following content:

    NOTE: The location of the PID file and the NGINX binary may be different depending on how NGINX was compiled.

    [Unit]
    Description=Nginx - A high performance web server and a reverse proxy server
    Documentation=http://nginx.org/en/docs/
    After=network.target
    
    [Service]
    Type=forking
    PIDFile=/var/run/nginx.pid
    ExecStartPre=/usr/sbin/nginx -t -q -g 'daemon on; master_process on;'
    ExecStart=/usr/sbin/nginx -g 'daemon on; master_process on;'
    ExecReload=/usr/sbin/nginx -g 'daemon on; master_process on;' -s reload
    ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /var/run/nginx.pid
    TimeoutStopSec=5
    KillMode=mixed
    
    [Install]
    WantedBy=multi-user.target
    
  16. Start NGINX:

    sudo systemctl start nginx.service
    
  17. Enable NGINX to start automatically on boot:

    sudo systemctl enable nginx.service
    
  18. Check if NGINX will startup after a reboot:

    sudo systemctl is-enabled nginx.service
    # enabled
    
  19. Check if NGINX is running:

    sudo systemctl status nginx.service
    ps aux | grep nginx
    curl -I 127.0.0.1
    
  20. Reboot your VPS to verify that NGINX starts up automatically:

    sudo shutdown -r now
    
  21. Remove archaic files from the /etc/nginx/ directory:

    sudo rm /etc/nginx/koi-utf /etc/nginx/koi-win /etc/nginx/win-utf
    
  22. Place syntax highlighting files of NGINX configuration for vim into ~/.vim/. You will be presented with nice syntax highlighting when editing NGINX configuration file:

    mkdir ~/.vim/
    cp -r ~/nginx-1.13.3/contrib/vim/* ~/.vim/
    
  23. Make a conf.d/ directory in the /etc/nginx/ directory. In this directory, you can place virtual servers and upstreams:

    sudo mkdir /etc/nginx/conf.d/
    
  24. Remove extracted directories and files from your home directory:

    rm -rf nginx-1.13.3/ openssl-1.1.0f/ pcre-8.41/ zlib-1.2.11/
    

Conclusion

That’s it. You now have newest version of NGINX installed. It is compiled statically against some important libraries like OpenSSL. Often, the system OpenSSL version is outdated. By using this method of installing with a newer version of OpenSSL, you can take advantage of new ciphers like CHACHA20_POLY1305 and protocols like TLS 1.3 that will be available in OpenSSL 1.1.1 (which has not been released at the time of writing).

Want to contribute?

You could earn up to $300 by adding new articles

Submit your article
Suggest an update
Request an article
Previous Post

How to Install Directus 6.4 CMS on a Fedora 26 LAMP VPS

Next Post

Installing Fork CMS on Fedora 28

Next Post

Installing Fork CMS on Fedora 28

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

No Result
View All Result

Recent Post

Install Imagemagick on CentOS
CentOS

Install Imagemagick on CentOS

by How VPS
June 28, 2023
0

This is how I installed Imagemagick on a vanilla CentOS server Start off by installing the prerequisites yum install php-pear...

Read more
how to Check phpinfo

How to Check phpinfo of Hosting or VPS?

June 28, 2023
Failed to download metadata for repo 'appstream' on Centos 8

How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

February 25, 2022
How to Fix MySQL Error "Plugin 'InnoDB' registration as a STORAGE ENGINE failed"?

How to Fix MySQL Error “Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed”?

November 17, 2020
How to optimize Mysql or MariaDB

How to optimize Mysql or MariaDB

November 3, 2020

Recent News

  • Install Imagemagick on CentOS
  • How to Check phpinfo of Hosting or VPS?
  • How to fix error: Failed to download metadata for repo ‘appstream’ on Centos 8

Category

  • Arch
  • Authentication
  • Backups
  • BSD
  • Centmin Mod
  • CentOS
  • Control Panels
  • CoreOS
  • CWP
  • Debian
  • Directadmin
  • Encryption
  • Fedora
  • Firewalls
  • Hocvps Script
  • Hosting providers
  • Kloxo-MR
  • Linux
  • Mitigations
  • Operating System
  • Plesk
  • Reviews
  • Securing VPS/Servers
  • Security Patches
  • SSL Certificates
  • Uncategorized
  • Upgrading
  • VPS/Servers management guides
  • Vulnerability Detection
  • Web servers software
  • Webhosting Control Panel
  • About
  • Advertise
  • Careers
  • Contact

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

No Result
View All Result
  • Home
  • Management guides
    • Web servers software
      • Directadmin
      • Hocvps Script
      • Centmin Mod
      • CWP
      • Kloxo-MR
      • Plesk
    • Control Panels
    • Securing VPS/Servers
      • SSL Certificates
      • Upgrading
      • Authentication
  • Operating System
    • CentOS
    • Fedora
    • Debian
    • Linux
    • Arch
    • BSD
    • CoreOS
  • Reviews
  • Coupon
    • Domain Coupon
    • Hosting Coupon

© 2025 JNews - Premium WordPress news & magazine theme by Jegtheme.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
Thabet