The .NET core API requires apache set up as reverse proxy. How can I run both the web API and my other normal web site that doesn’t require any reverse proxy stuff.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
You need to use a different apache configuration file for each one of them.
I will assume that you have webapi.net DNS record for the .net core web API and laravel-app.com DNS record for the laravel application, here is an example config for each one of them.
The first one webapi.conf
<VirtualHost *:80>
ServerName webapi.net
ErrorLog ${APACHE_LOG_DIR}/net_error.log
CustomLog ${APACHE_LOG_DIR}/net_access.log combined
ProxyPassReverse "/" <url to net core api with / at the end>
</VirtualHost>
The second one laravel-app.conf
ServerName laravel-app.com
DocumentRoot (path to local laravel application)
<Directory (path to local laravel application)>
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/laravel_error.log
CustomLog ${APACHE_LOG_DIR}/laravel_access.log combined
Enable the two new sites
sudo a2ensite webapi.conf
sudo a2ensite laravel-app.com
sudo service apache2 restart
Now you can access the net core API with this url http://webapi.net and the laravel application with this url http://laravel-app.com.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.