fix: launch Windows nginx from native project prefix

This commit is contained in:
reaper
2026-08-28 08:01:41 -05:00
parent 3a3b89f14a
commit c6ead2c529
5 changed files with 20 additions and 6 deletions
+2
View File
@@ -40,6 +40,8 @@ jobs:
- name: Build and verify Aurora Native for Windows
shell: pwsh
run: |
$ErrorActionPreference = 'Stop'
$PSNativeCommandUseErrorActionPreference = $true
./runtime-build/windows-x64/stage-runtime.ps1
node scripts/smoke-native-runtime.cjs dist/native-runtime-stage/win32-x64
$runtime = (Resolve-Path 'dist/native-runtime-stage/win32-x64').Path
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "aurora-dockside",
"version": "2.0.0-alpha.32",
"version": "2.0.0-alpha.33",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "aurora-dockside",
"version": "2.0.0-alpha.32",
"version": "2.0.0-alpha.33",
"hasInstallScript": true,
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "aurora-dockside",
"version": "2.0.0-alpha.32",
"version": "2.0.0-alpha.33",
"description": "A modern, modular Docker development platform for building, running, and managing web applications locally.",
"desktopName": "aurora-dockside.desktop",
"main": "./out/main/index.js",
+12
View File
@@ -8,6 +8,7 @@ import { describe, expect, it } from 'vitest'
import {
renderMariaDbConfig,
nativeConfigPath,
nativeServiceSpecs,
renderNativeAdminerBootstrap,
renderNginxConfig,
renderPhpFpmConfig,
@@ -63,6 +64,17 @@ describe('native project configuration', () => {
expect(config).toContain('location ~ \\.php$')
expect(config).toContain(nativeConfigPath(resolve(projectRoot, 'public')))
})
it('launches nginx with a project-relative config path', () => {
const web = nativeServiceSpecs({ ...project, installedRuntimeRoot }).find((service) =>
service.id.endsWith(':web')
)
expect(web?.args).toEqual([
'-p',
`${nativeConfigPath(join(projectRoot, '.aurora', 'native'))}/`,
'-c',
'config/nginx.conf'
])
})
it('isolates MariaDB data and networking', () => {
const config = renderMariaDbConfig(project, installedRuntimeRoot)
expect(config).toContain('bind-address=127.0.0.1')
+3 -3
View File
@@ -258,10 +258,10 @@ export function nativeServiceSpecs(project: NativeProjectDefinition): NativeServ
...common('web'),
command: runtimeExecutable(project, 'nginx'),
args: [
'-c',
nativeConfigPath(join(directory, 'config', 'nginx.conf')),
'-p',
`${nativeConfigPath(directory)}/`
`${nativeConfigPath(directory)}/`,
'-c',
'config/nginx.conf'
],
ready: { port: project.ports.http }
}