<VirtualHost *:80>
	# The ServerName directive sets the request scheme, hostname and port that
	# the server uses to identify itself. This is used when creating
	# redirection URLs. In the context of virtual hosts, the ServerName
	# specifies what hostname must appear in the request's Host: header to
	# match this virtual host. For the default virtual host (this file) this
	# value is not decisive as it is used as a last resort host regardless.
	# However, you must set it for any further virtual host explicitly.
	#ServerName www.example.com

	ServerAdmin webmaster@localhost
	DocumentRoot /var/www/html

        # Allow .htaccess files to be processed
	<Directory /var/www/html>
		Options -Indexes +FollowSymLinks +MultiViews
		AllowOverride All
		Require all granted
	</Directory>

	# Voicebot API Directory Configuration
	<Directory /var/www/html/voicebot-api>
		Options -Indexes +FollowSymLinks +MultiViews
		AllowOverride All
		Require all granted
	</Directory>

	# devapp.syntheon.in configuration for HTTP (Port 80)
	<VirtualHost *:80>
		ServerName devapp.syntheon.in
		ServerAlias devapp.syntheon.in
		DocumentRoot /var/www/html/voicebot-web/
		
		<Directory /var/www/html/voicebot-web/>
			Options -Indexes +FollowSymLinks +MultiViews
			AllowOverride All
			Require all granted
		</Directory>
		
		# Alias for voicebot-api to route /voicebot-api/* to /var/www/html/voicebot-api/*
		Alias /voicebot-api /var/www/html/voicebot-api
		
		<Directory /var/www/html/voicebot-api>
			Options -Indexes +FollowSymLinks +MultiViews
			AllowOverride All
			Require all granted
		</Directory>
		
		<FilesMatch \.php$>
			SetHandler "proxy:unix:/usr/local/php83/var/run/php-fpm.sock|fcgi://localhost/"
		</FilesMatch>
		
		ErrorLog ${APACHE_LOG_DIR}/devapp.syntheon.in-error.log
		CustomLog ${APACHE_LOG_DIR}/devapp.syntheon.in-access.log common
	</VirtualHost>

      # Enable CGI for telnyx-mcp-server-main
#	<Directory /var/www/html/telnyx-mcp-server-main/cgi-bin>
#		Options +ExecCGI
#		AddHandler cgi-script .py
#		Require all granted
#	</Directory>

	# Alias for easy access
#	ScriptAlias /telnyx-mcp-server-main/make_call /var/www/html/telnyx-mcp-server-main/cgi-bin/make_call.py
#	RewriteRule ^telnyx-mcp-server-main/make_call/?$ /telnyx-mcp-server-main/make_call.py [L]
	# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
	# error, crit, alert, emerg.
	# It is also possible to configure the loglevel for particular
	# modules, e.g.
	#LogLevel info ssl:warn

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

	# For most configuration files from conf-available/, which are
	# enabled or disabled at a global level, it is possible to
	# include a line for only one particular virtual host. For example the
	# following line enables the CGI configuration for this host only
	# after it has been globally disabled with "a2disconf".
	#Include conf-available/serve-cgi-bin.conf
        <FilesMatch \.php$>
    		SetHandler "proxy:unix:/usr/local/php83/var/run/php-fpm.sock|fcgi://localhost/"
	</FilesMatch>

RewriteEngine on
RewriteCond %{SERVER_NAME} =syntheon [OR]
RewriteCond %{SERVER_NAME} =app.syntheon.in
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet



<IfModule mod_ssl.c>
        <VirtualHost _default_:443>
                ServerAdmin admin@mcube.com
                ServerName devapp.syntheon.in
                ServerAlias devapp.syntheon.in
                DocumentRoot /var/www/html/voicebot-web/
                ErrorLog ${APACHE_LOG_DIR}/devapp.syntheon.in-error.log
                CustomLog ${APACHE_LOG_DIR}/devapp.syntheon.in-access.log common
 <Directory /var/www/html/voicebot-web/>
        Options -Indexes +FollowSymLinks +MultiViews
        AllowOverride All
        Require all granted
    </Directory>

    # Alias for voicebot-api to route /voicebot-api/* to /var/www/html/voicebot-api/*
    Alias /voicebot-api /var/www/html/voicebot-api

    <Directory /var/www/html/voicebot-api>
        Options -Indexes +FollowSymLinks +MultiViews
        AllowOverride All
        Require all granted
    </Directory>

                <FilesMatch \.php$>
                        SetHandler "proxy:unix:/usr/local/php83/var/run/php-fpm.sock|fcgi://localhost/"
                </FilesMatch>
                SSLEngine on
                <FilesMatch "\.(cgi|shtml|phtml|php)$">
                        SSLOptions +StdEnvVars
                </FilesMatch>
                                                        Include /etc/letsencrypt/options-ssl-apache.conf
SSLCertificateFile /etc/letsencrypt/live/devapp.syntheon.in/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/devapp.syntheon.in/privkey.pem
</VirtualHost>
</IfModule>

