lucazaga / corsoing20172018

Corso ingegneria 2017/2018

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add to In C:\xampp\apache\conf\httpd.conf

Enable 2 modules:
	LoadModule proxy_connect_module modules/mod_proxy_connect.so
	LoadModule proxy_http_module modules/mod_proxy_http.so
	
In C:\xampp\apache\conf\extra\httpd-vhosts.conf
	Add at the end of the files:
	
		<VirtualHost *:80>
			ProxyPreserveHost On

			# Servers to proxy the connection, or;
			# List of application servers:
			# Usage:
			# ProxyPass / http://[IP Addr.]:[port]/
			# ProxyPassReverse / http://[IP Addr.]:[port]/
			# Example: 
			ProxyPass /api/ http://localhost:5000/api/
			ProxyPassReverse /api http://localhost:5000/api/

			ServerName localhost
		</VirtualHost>

About

Corso ingegneria 2017/2018


Languages

Language:C# 65.8%Language:TypeScript 14.0%Language:JavaScript 11.2%Language:HTML 4.5%Language:CSS 4.4%