Server Integration
The Belle II event display web application is built using the Angular CLI. To integrate the app with the Apache server, follow these steps.
Build the App: Run the following command from the project directory to build the app:
$ npm run build
This command generates optimized production-ready files in the
dist
directory. Move this folder to a suitable location for easier server integration.Configure Apache Server: Configure your Apache server to serve the app’s files. Edit your Apache configuration file and add the following block:
<VirtualHost *:80> ServerName yourdomain.com DocumentRoot /path_to_app/dist <Directory /path_to_app/dist> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory> </VirtualHost>
Replace
yourdomain.com
with your actual domain name and/path_to_app/dist
with the actual path to the Belle II app’sdist
directory.Enable mod_rewrite for Routing: Add the following lines to your server configuration to enable mod_rewrite for routing:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.html [L] </IfModule>
Restart Apache: Apply the configuration updates by restarting the Apache server. On a Linux-based system, use the following command:
$ sudo service apache2 restart