Advanced Search
Search Results
5 total results found
Using Tranquil SSO with Microsoft 365
If you are subscribed to Microsoft 365 through Tranquil IT, you don't even need another login to access other Tranquil Services. This makes it even more secure and easier for you as you only need the one login for all accounts. When presented with the Tranqu...
Reverse Proxy
The new reverse proxy is located on the docker1 VM and consists of the following containers: nginx1 (Normal proxy) nginx2 (Secure proxy for proxying sites that need to be protected by SSO) oauth2-proxy (Handler proxy for authenticating users, used with ng...
New Nuxt Framework - Initialise
Make sure pnpm is installed through homebrewPHPStorm -> New empty project Terminal pnpm create nuxt -> follow steps (when it asks which package manager, select pnpm)When asked which modules, nuxt/eslint, nuxt/icon, nuxt/imageOnce project is created, run pnp...
New Nuxt Framework - Cloning existing project
Clone project like normal, navigate to true project directory (where package.json exists), and run pnpm install Once all packages have installed, run pnpm run dev to launch the development server
Nuxt Framework - Server Setup
Ensure pm2 and latest nodejs are both installed on the server. Create a ecosystem.config.cjs file in the project root, and it should look like this: module.exports = { apps: [ { name: 'Site-Name', port: '3000', ...