logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Set Next.js as the Default Page Instead of WordPress-content
Author
Davids



Joined: 02 Aug 2024
Posts: 1
Location: Georgia, tbilisi

PostPosted: Fri 02 Aug '24 19:39    Post subject: Set Next.js as the Default Page Instead of WordPress-content Reply with quote

I have a server setup with Apache on Ubuntu, where I'm running both a Next.js application and a WordPress site. The WordPress installation is located in /var/www/html/wordpress, and the Next.js application is in /var/www/html/personal. My goal is to configure the server so that the Next.js application serves as the default page, while keeping WordPress accessible as well.

I have successfully deployed the Next.js application using PM2, and it is running without any issues or errors.

Here's what I've tried so far:

Apache Configuration:

I have modified the Apache configuration files to point to the Next.js application as the default site. My configuration file (/etc/apache2/sites-available/example.com.conf) looks like this:
Code:

<VirtualHost *:80>
    ServerName example.com
    DocumentRoot /var/www/html/personal

    <Directory /var/www/html/personal>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
    </Directory>

    ProxyPass / http://localhost:3000/
    ProxyPassReverse / http://localhost:3000/

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
.

htaccess Configuration:

In the WordPress .htaccess file (/var/www/html/wordpress/.htaccess), I added the following rules to exclude the Next.js application from being processed by WordPress:

Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /

# Do not process requests for Next.js app
RewriteCond %{REQUEST_URI} !^/personal/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /wp-admin/index.php [L]
</IfModule>
# END WordPress


Permissions:

I ensured that the Next.js folder and files have the correct permissions:

Code:
sudo chown -R www-data:www-data /var/www/html/personal
sudo chmod -R 755 /var/www/html/personal


Service Status:

The Next.js application is running and accessible at http://localhost:3000, but it does not seem to replace the WordPress content on the main domain (example.com).

Questions:

Are there any additional Apache configuration settings needed to ensure that Next.js serves as the default page?

Is there something missing in the .htaccess file that might be causing the issue?

How can I verify that the Apache proxy settings are correctly routing requests to the Next.js application?
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7354
Location: Germany, Next to Hamburg

PostPosted: Thu 08 Aug '24 9:23    Post subject: Reply with quote

There is an article for that https://medium.com/@viktor.panasiuk97/how-to-publish-the-next-js-app-on-the-apache-server-60cb64e91853
Back to top


Reply to topic   Topic: Set Next.js as the Default Page Instead of WordPress-content View previous topic :: View next topic
Post new topic   Forum Index -> Apache